Installing Oracle 10g personal edition

Hi,
I am trying to install Oracle 10g personal edition on ubuntu. After installing I ran the following command: /etc/init.d/oracle-xe configure and by mistake gave a port number for HTTP port on which already another server is running. But now I am unable to change my configuration settings.
Everytime I give the command /etc/init.d/oracle-xe configure it says "Oracle Database 10g Express Edition is already configured"
How can I change the configuration setting now? Do I need to reinstall it? Would be a great help, if somebody can tell me.
Thanks,
tulip

In oder for you to handle ports and monitor port assignment follow these steps:
SQL*Plus: Release 10.1.0.2.0 - Production on Mi Jan 25 11:44:33 2006
Copyright (c) 1982, 2004, Oracle.  All rights reserved.
Enter password:
Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Beta
SQL> -- get current status
SQL> select dbms_xdb.gethttpport as "HTTP-Port"
            , dbms_xdb.getftpport as "FTP-Port" from dual;
HTTP-Port   FTP-Port
     8080          0You can change the http port and the ftp port to whatever you like (keep in mind that you need special privileges for ports < 1024 on Unix/Linux systems).
SQL> -- set http port and ftp port
SQL> begin
2    dbms_xdb.sethttpport('80');
3    dbms_xdb.setftpport('2100');
4  end;
5  /
PL/SQL procedure successfully completed.
SQL> select dbms_xdb.gethttpport as "HTTP-Port"
            , dbms_xdb.getftpport as "FTP-Port" from dual;
HTTP-Port   FTP-Port
       80       2100If you only want to use the database without allowing access via http or ftp then you can disable both:
SQL> -- disable http and ftp access
SQL> begin
2    dbms_xdb.sethttpport('0');
3    dbms_xdb.setftpport('0');
4  end;
5  /
PL/SQL procedure successfully completed.
SQL> -- get current status
SQL> select dbms_xdb.gethttpport as "HTTP-Port"
            , dbms_xdb.getftpport as "FTP-Port" from dual;
HTTP-Port   FTP-Port
        0          0~ Madrid

Similar Messages

  • Oracle 10g Personal edition as a Client Database

    Hi, Our enterprise application runs as in both Online and offline mode. For offline mode it uses Microsoft accesss as Data Store. Now we want to use Oracle 10g Personal Edition as Our client database, so that we can use stored procedure and have code base for both server and client. Oracle XE can not be used because Oracle XE is not supported by Oracle.
    Please suggest what is the best way to deploy Oracle PE to get smallest footprint and best performance. It is alright to use PE as client DB or it is too much for offline application.
    Any suggested customizations or Alternatives. We have rules out Oracle Database lite because it doesn't support Pl/ SQL SP. Thanks.

    Note that Personal Edition is actually designed for Developers. It includes all options to the Enterprise Edition (except RAC) but is limited by license agreement to being used by one named person. You can not legally provide data from Personal Edition through direct connection electronically (eg: a web or app server) to several people. You also can not say "John is using it now, and when he is off, Fred will use it."
    The best and smallest footprinit is XE, but (as you say) you can not purchasse support from Oracle. Next is Standard Edition 1, with a Standard Edition software install (SE and SE1 are the same s/w) and a custom-created DB.

  • Installing oracle 10g xe edition on linux

    Hi,
    I am trying to install oracle 10g xe edition on redhat linux. By default the oracle database rpm package uses /usr/lib partition for installation files. Is it possible to install the oracle database files in /export partition instead of default location /usr/lib?
    Thanks
    Kapil

    There are a few differrent 'RedHat Linuxes' ... could you be a bit more specific.
    But ... the default answer is 'no'. Several of us have used various workarounds, including creating a special link from /usr/lib/oracle to /export/oracle and the like.
    I installed in /usr/lib and after successful installation I created a special link, copied everything to the new target, and have had no problems at all.
    Others have used other techniques with success. INcluding the one by cd - tweak the install script.

  • Not installing Oracle 10g Express Edition Beta 2

    Hi,
    I am in problem to install Oracle 10g Express Edition Beta 2 on Windows 2000 Pro. I have download OracleXE.exe but when i am double clicking on it, it is not working. What are the problems? Please help me
    Dulal

    Hello,
    Oracle 10g XE is rather specific and, I'm not sure that you can upgrade it to 10.2.0.4 .
    However, Oracle published an Upgrade Guide for Oracle Express Edition but, it's limited to *10.2.0.3*:
    http://download.oracle.com/docs/cd/B25329_01/doc/server.102/b32391/toc.htm
    But be careful:
    Once you have upgraded to Oracle Database 10g, you cannot downgrade back to Oracle Database Express Edition.Hope this help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on May 22, 2010 12:06 AM

  • An issue while installing oracle 10g express edition on Ubuntu 10.04-64bit

    Hi,
    I'm running into an issue while installing oracle 10g express edition on my Ubuntu 10.04-64 bit installed machine using oracle-xe-universal_10.2.0.1-1.0_i386.deb package. The issue actually came up when I was trying to reinstall the package after uninstalling it due to some problem I had with my login credentials. To elaborate further on it, the /etc/init.d/oracle-xe script does not get created when I execute the debian package and thus i'm unable to configure the required credentials and stuff after the installation. I doubt whether this has something to do with the procedure I followed when uninstalling the previous package it. But what I did was just what's mentioned in the following [http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm] user guide published by oracle.
    Another important clue would be, the platform of my machine is amd64bit although I'm dealing with an installation package preferred for i386. But I believe it's the only thing available in the oracle software download section. Hence I had to use the --force-architecture option to install it. But after reading some post published on this forum, I've figured out that it does not affect the usual execution of the software. Anyway,  I would greatly appreciate some help on this matter.
    [1] http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm
    Thanks and Regards,
    Prabath Abeysekara
    Edited by: 829281 on Jan 18, 2011 7:52 PM

    Hi,
    Finally I've managed to find a solution for this issue. Thanks a lot for all the replies.
    Here's how I got rid of it.
    Addressing all the facts one by one,
    1.The problem of not getting the /etc/init.d/oracle-xe script generated was avoided
    by removing all the configuration files that were previously created while installing
    the product. The following command can be used to accomplish that task.
    *$ dpkg --purge oracle-xe*
    2.Next, Initially the password I used during the configuration process was "admin".
    Although I tried a couple of times installing the product providing the aforementioned
    password, the web UI kept prompting "Invalid Credentials" message not allowing me
    to login. But, this particular issue could be avoided by giving some other simple
    password.
    Finally, got it working and once again thanks a bunch for taking the burden of
    replying this thread.
    Cheers,
    Prabath

  • Installing Oracle 10G Express Edition on Linux after installing Libaio-0.3

    I had got a error while installing 10G Express Edition on Redhat Fedora core 4 linux after installing libaio-0.3.104-2.i386.rpm
    I had given the following command in Linux Command prompt to install the oracle database 10 G Express Edition (oracle-xe-10.2.0.1-1.0.i386.rpm)
    # sudo rpm -ivh /tmp/oracle-xe-10.2.0.1-1.0.i386.rpm
    The error I had got is as follows:
    Preparing.....#####################[100%]
    1:oracle-xe Warning:/etc/init.d/oracle-xe saved as /etc/init.d/oracle-xe.rpmorig
    error:Unpacking of archive failed on file /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/ons;4698950F:cpio:MD5 Sum Mismatch

    The steps I am asking is for installing oracle 10G express edition on Redhat Fedora core 4 Linux version. Now, after downloading the fresh copy of Oracle 10G express edition from the Oracle site. I have successfully installed oracle now.
    I was getting the following errors - I have pasted previous query for the problem which I had faced after installing Oracle 10 G Express Edition successfully on Redhat Fedora Core 4 Linux.
    The Previous Query is as follows:
    Thanks For Guiding Me All of you!
    Finally, I have installed Oracle 10G Express Edition on Redhat Fedora core 4 Linux.
    Now, I am having the following problems:
    After making the changes as per my Reference mentioned in my different messages, I had done the troubleshooting steps going to Options and setting the same.
    1.When I try to load the http://127.0.0.1:8080/apex page it gives an error popup:
    " The connection was refused when attempting to contact 127.0.0.1:8080 "
    2. After opening the Run the SQL Command Line by clicking on applications and When I say " Connect System and when prompted for password, I have entered the password and gives another error as follows:
    ORA-01034 : Oracle not available
    ORA-27101: Shared Memory realm does not exist
    Linux Error:2:No such file or directory
    3. When I try to manually start the Listener or Services, It gives one more error:
    Root Not a Member of DBA Group
    I need to What is happening or What is the Problem and How will I rectify them?

  • Installing Oracle 10g Express Edition on Red Hat Linux

    Hi,
    I am new with Linux Os and have to install oracle 10g Express Edition on Red Hat Linux Os for a customer. So before proceeding, I need some guidelines.
    1) which Linux(freeware) flavor should I install ?
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?
    4) need download link for latest version of Red Hat Linux setup
    Regards
    Edited by: user640001 on Feb 25, 2011 5:44 AM

    1) which Linux(freeware) flavor should I install ?Ordinarily, I'd recommend getting Oracle Linux (http://eDelivery.oracle.com/linux) because the default install includes all the prerequisite RPM packages you will need. And failing that, also offers another RPM package "oracle-validated" which will cause the installation of the necessary prerequisites.
    But... you mentioned customer: if this is a revenue-producing situation and customer money is at stake, I strongly recommend they obtain commercial O/S support with either Oracle, Red Hat, or maybe SuSE/Novell. Compared to the cost of a downed business, an O/S support arrangement is cheap, cheap, cheap.
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?Sure. You can run Oracle VirtualBox on most Linux, Windows, or Solaris boxes. http://VirtualBox.org for info.
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?No real differences in either environment.
    4) need download link for latest version of Red Hat Linux setupWhat, you didn't try http://eDelivery.oracle.com/linux yet?

  • Installing Oracle 10g Express Edition on x86_64

    Hi,
    I tried installing Oracle 10g express edition on Arch Linux X86_64 but could not get it running.
    I followed guide here http://alodib.com/?q=node/32.
    Installation went well. Then I configured it, apparently went well. But could not get it running.
    I have following output
    $>sudo /etc/rc.d/oracle-xe restart
    :: Stopping Oracle Database                                              [FAIL]
    :: Starting Oracle Database                                              [DONE]
    $>sudo /etc/rc.d/oracle-xe restart
    :: Stopping Oracle Database                                              [FAIL]
    :: Starting Oracle Database                                              [DONE]
    $>sudo /etc/rc.d/oracle-xe status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 26-DEC-2011 12:58:24
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date                26-DEC-2011 12:17:16
    Uptime                    0 days 0 hr. 41 min. 7 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Default Service           XE
    Listener Parameter File   /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File         /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    $> sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Dec 26 13:17:43 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Enter user-name: system
    Enter password:
    oracleXE: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
    ERROR:
    ORA-12547: TNS:lost contact

    1) which Linux(freeware) flavor should I install ?Ordinarily, I'd recommend getting Oracle Linux (http://eDelivery.oracle.com/linux) because the default install includes all the prerequisite RPM packages you will need. And failing that, also offers another RPM package "oracle-validated" which will cause the installation of the necessary prerequisites.
    But... you mentioned customer: if this is a revenue-producing situation and customer money is at stake, I strongly recommend they obtain commercial O/S support with either Oracle, Red Hat, or maybe SuSE/Novell. Compared to the cost of a downed business, an O/S support arrangement is cheap, cheap, cheap.
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?Sure. You can run Oracle VirtualBox on most Linux, Windows, or Solaris boxes. http://VirtualBox.org for info.
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?No real differences in either environment.
    4) need download link for latest version of Red Hat Linux setupWhat, you didn't try http://eDelivery.oracle.com/linux yet?

  • Problems facing while installing Oracle 8i personal edition under win98se

    hello,
    I am having problems while installing Oracle 8i personal edition
    under win98se.
    I am stuck on the creation of database. it always stuck at 85%.
    I've try installed many many times.. but it still the same..
    what can i do?
    i am using win98 se.
    is there any solution for this problems?
    thanks~!

    Under Win 98SE (Personal Oracle 8i)creation of database - very
    long. Therefore choose a mode of creation of base - copy from CD.
    Then the base can be increased.
    Best regards - Alex

  • Unable to start listener in Oracle 10g personal edition

    Hi all,
    I am trying to start the listener on my Oracle 10g personal edition. I tried this from Windows' Administrative Tools' and then 'Services'. I also tried it from the Command line. Both methods fail. Here are the error messages for each method:
    In 'Services' in Windows:
    The OracleOraDB10g_home1TNSListner service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service. In 'Command Line':
    D:\oracle\product\10.2.0\db_1\BIN>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 23-MAY-2012 09:47:02
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production
    System parameter file is D:\oracle\product\10.2.0\db_1\network\admin\listener.ora
    Log messages written to D:\oracle\product\10.2.0\db_1\network\log\listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ABCDEFG)(PORT=1521)))
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
      TNS-00512: Address already in use
       32-bit Windows Error: 48: Unknown error
    Listener failed to start. See the error message(s) above...
    D:\oracle\product\10.2.0\db_1\BIN> Any ideas have this issue could get resolved.
    Thank you in advance,
    Seyed

    Seyed_G wrote:
    Hi all,
    I am trying to start the listener on my Oracle 10g personal edition. I tried this from Windows' Administrative Tools' and then 'Services'. I also tried it from the Command line. Both methods fail. Here are the error messages for each method:
    In 'Services' in Windows:
    The OracleOraDB10g_home1TNSListner service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service. In 'Command Line':
    D:\oracle\product\10.2.0\db_1\BIN>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 23-MAY-2012 09:47:02
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production
    System parameter file is D:\oracle\product\10.2.0\db_1\network\admin\listener.ora
    Log messages written to D:\oracle\product\10.2.0\db_1\network\log\listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=W99X01G4R08B1.okdhs.int)(PORT=1521)))
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
    TNS-00512: Address already in use
    32-bit Windows Error: 48: Unknown error
    Listener failed to start. See the error message(s) above...
    D:\oracle\product\10.2.0\db_1\BIN> Any ideas have this issue could get resolved.
    Thank you in advance,
    SeyedHas Windows Service for Listener been successfully started & running now?

  • Cannot install Oracle 8i (Personal Edition) 8.1.7 on Windows 98 (Second Edition)

    Hello,
    I am unable to install Oracle 8i Personal Edition on my Windows 98 (Second Edition) system. I have selected "typical" install. All the files get installed (100% complete) but then the Configuration Tool install phase fails to complete when installing Oracle Database Configuration Assistant. I get the following error message :
    java.lang.NullpointerException
    at DropOracle.QueryDB(Compiled Code)
    at DeletePanel.InitControls(Compiled Code)
    at DeletePanel.<init>(DeletePanel.java:100)
    at DBCreateWizard.<init>(DBCReateWizard.java:569)
    at DBCreateWizard.main(DBCreateWizard.java:1422)
    The system just hangs with the "in progress" message.
    The previous step -
    The Net8 Configuration Assistant install completes successfully
    (return code 0).
    If anyone can help me resolve my problem it will be greatly appreciated.
    Or if you could tell me which Oracle email address (or phone number) I should address my problem to it will be appreciated. I do NOT have a Oracle Support Licence (I only purchased the evaluation CD pack).
    I have installed Java 2 (JDK 1.3) in a separate directory - but I understand Oracle 8i has its own version of JRE 1.1... in its own subdirectory structure ... so my JDK 1.3 should not be interfering with the Oracle 8i installation programs.
    Many thanks in advance.
    Partha Sur
    732-873-2547

    What is your RAM? I ran into the same problem, even though I had more RAM then required. I had to shutdown everything, make a very basic wallpaper that did not put too much strain on the system, then it installed.
    Unistall Oracle, remove all the remaining files and the directory by hand. Also you have to remove any trace of Oracle in your regedit. Check if path to Oracle is still in autoexec.bat; if it is delete it - the Oracle path not the file. Reboot and then do Alt-Ctr-Del and turn off all the unecessary programs and try installing it again.
    Hope it works.
    Iwona

  • OWB: using Oracle 10g personal edition

    Hello,
    In order to evaluate BI solution, I 'd like to know if it's possible to use OWB with a local DB as Oracle 10g personal edition ?
    Thanks
    Marc

    Yes it is : http://www.oracle.com/database/product_editions.html
    Nicolas.

  • Oracle 10g Personal Edition?  Is there such a thing? Tks

    Oracle 10g Personal Edition? Is there such a thing? Tks

    Yes it is : http://www.oracle.com/database/product_editions.html
    Nicolas.

  • Error in Installing Oracle 10g Express Edition Universal on WIndows2003

    While Installing Oracle 10g XE Universal On WIndows 2003 Server Standard Edition(Which is a standalone Machine). I got an following Error:
    Error No: 0x80040707
    Error Description: DLL Function Call Crashed: GetHostnameDll.getHostname.
    Plz find some solution for the above problem.

    Hi
    Here's the resolution that can work for you:
    Disable the "Print Spooler" service before running the installer.
    1.Open Control Panel: Start --> Settings --> Control Panel
    2.Double-click "Services"
    3.On the list of NT Services, right-click "Print Spooler"
    4.Select "Stop"
    5.Select "Properties"
    6.Under Startup Type, select "manual" or "disabled"
    7.Reboot your NT Server
    8.After rebooting, verify that the Print Spooler is still "stopped".
    9.Delete Program Files\Common Files\Installshield\Engine folder
    10.Re-run the installer.
    11.After installation, re-set the Print Spooler service to Startup type "Automatic" and start the service.
    Also, have a look at the installshield page: http://consumer.installshield.com/kb.asp?id=Q108167
    -Priya

  • Newly installed oracle 10g express edition database

    Hai to all
    I have fedora 15 operating system with oracle 10g express edition database installed .. I already have working knowledge in mysql database .. my question is that when i opened oracle database via sql developer , then by expanding tables tab on left side .. I can able to see some table that are created by default as the following:
    AQ$_INTERNET_AGENT_PRIVS
    DEF$_AQCALL
    LOGMNR_AGE_SPILLS$
    My question is that . Can i drop all these tables ??? . By doing so, will that create any problems ..
    Any idea will help me ..
    thanks in advance to allllllll

    If You wont to see how Oracle drop tables
    - create Youre schema
    create user test_user ... ;
    -create table
    create table test_user.test_table ... ;
    drop table
    table test_user.test_table ;
    Regards,
    Pavel
    Edited by: Pavel on May 22, 2012 10:26 PM

Maybe you are looking for