Koozali.org: home of the SME Server

Oracle XE 11.2

Offline Jáder

  • *
  • 1,099
  • +0/-0
    • LinuxFacil
Oracle XE 11.2
« on: January 29, 2015, 01:56:02 PM »
I´ve installed a Oracle 11.2 XE  (free edition) on SME9 64bits.

It appears to work so from my notes started a wiki page: wiki.contribs.org/OracleXE

I´m not sure about startup commands (ln -s to rc7 and rc1) and appreciate tips from anyone.

Regards

Jáder
...

Offline Stefano

  • *
  • 10,839
  • +2/-0
Re: Oracle XE 11.2
« Reply #1 on: January 29, 2015, 03:52:24 PM »
excellent

I would modify:

Quote
ln -s  /etc/rc.d/init.d/oracle-xe /etc/rc7.d/S99Oracle

ln -s  /etc/rc.d/init.d/oracle-xe /etc/rc1.d/K98Oracle

in
Code: [Select]
config set oracle-xe service status enabled TCPPort 8080
ln -s /etc/rc.d/init.d/e-smith-service /etc/rc7.d/S99oracle-xe
ln -s /etc/rc.d/init.d/e-smith-service /etc/rc1.d/K01oracle-xe

in this way:
- you can enable/disable service in the SME way
- oracle-xe is one of the latest services to start and the first to be stopped
- start/stop/restart via
Code: [Select]
service oracle-xe start|stop|restart

NB the latest swiches can be different/not applicable

Offline Jáder

  • *
  • 1,099
  • +0/-0
    • LinuxFacil
Re: Oracle XE 11.2
« Reply #2 on: February 01, 2015, 11:18:52 AM »
Thanks by your tips. Wiki updated.
...