Oracle XE Database Configuration failed

前端 未结 9 1943
离开以前
离开以前 2020-12-31 14:08

I am trying to create an oracle xe database in my vps.

VPS OS : Cent OS.

When try to run

/etc/init.d/oracle-xe configure

i

相关标签:
9条回答
  • 2020-12-31 15:00

    I too faced the similar issue on Linux Mint 17.3. Fortunately, I found the solution sooner. The issue is simply that your shared memory file is not where Oracle expects it to be i.e. /dev/shm but you'd be having it at /run/shm with /dev/shm linking to it.

    So, to resolve this issue, before configuring the database, you must perform the below steps in order

    $ sudo rm -rf /dev/shm
    $ sudo mkdir /dev/shm
    $ sudo mount -t tmpfs shmfs -o size=2048m /dev/shm
    

    I have tested it, works perfect.

    0 讨论(0)
  • 2020-12-31 15:05

    I had same issues.

    I uninstalled oracle-xe. See How to reconfigure Oracle 10g xe on Linux

    Then followed

    yum install bc
    rpm -i oracle-xe.rpm
    /etc/init.d/oracle-xe configure
    

    Everything went fine.

    0 讨论(0)
  • 2020-12-31 15:10

    Add your servers name and IP to the /etc/hosts file

    0 讨论(0)
提交回复
热议问题