Oracle Express Edition (XE) et Ubuntu
Par Olivier le samedi 3 mars 2007, 17:52 - Lien permanent
L'installation d'Oracle sous Ubuntu est simplifiée grâce à apt-get. Dans le fichier /etc/apt/sources.list, ajouter le dépôt Oracle :
deb http://oss.oracle.com/debian/ unstable main non-free
Puis lancer l'installation du paquet oracle-xe-universal (soyez patient il faut télécharger 262MB):
$sudo apt-get update ... $sudo apt-get install oracle-xe-universal ...
Attention : l'installation demande 1006 MB dans le swap.
L'installation doit être suivi par la commande suivante (qui prend un peu de temps) :
$ sudo /etc/init.d/oracle-xe configure Oracle Database 10g Express Edition Configuration ------------------------------------------------- This will configure on-boot properties of Oracle Database 10g Express Edition. The following questions will determine whether the database should be starting upon system boot, the ports it will use, and the passwords that will be used for database accounts. Press <Enter> to accept the defaults. Ctrl-C will abort. Specify the HTTP port that will be used for Oracle Application Express [8080]:8079 Specify a port that will be used for the database listener [1521]: Specify a password to be used for database accounts. Note that the same password will be used for SYS and SYSTEM. Oracle recommends the use of different passwords for each database account. This can be done after initial configuration: Confirm the password: Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]:y Starting Oracle Net Listener...Done Configuring Database...Done Starting Oracle Database 10g Express Edition Instance...Done Installation Completed Successfully. To access the Database Home Page go to "http://127.0.0.1:8079/apex"
J'ai choisi le 8079 pour éviter des conflits éventuels avec les serveurs d'applications java.

Commentaires
Hier j'ai installé oracle 10g express edition sur ma ubuntu en suivant le tutoriel:
http://blog.bazoud.com/post/2007/0 ... -et-Ubuntu
J'ai laissé les ports par défaut...
Je n'ai pas eu de soucis particulier et je pouvais accéder à la page d'administation locale http://127.0.0.1:8080/apex/
Depuis ce matin, il me refuse la connection vers cette page pourtant l'éxecution de la commande ps -ef | grep oracle me donne des résultats convainquants:
oracle 4922 1 0 11:47 ? 00:00:00 /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr LISTENER -inherit
oracle 5063 1 0 11:48 ? 00:00:00 xe_pmon_XE
oracle 5065 1 0 11:48 ? 00:00:00 xe_psp0_XE
oracle 5067 1 0 11:48 ? 00:00:00 xe_mman_XE
oracle 5069 1 0 11:48 ? 00:00:00 xe_dbw0_XE
oracle 5071 1 0 11:48 ? 00:00:00 xe_lgwr_XE
oracle 5073 1 0 11:48 ? 00:00:00 xe_ckpt_XE
oracle 5075 1 0 11:48 ? 00:00:00 xe_smon_XE
oracle 5077 1 0 11:48 ? 00:00:00 xe_reco_XE
oracle 5079 1 0 11:48 ? 00:00:00 xe_cjq0_XE
oracle 5081 1 0 11:48 ? 00:00:00 xe_mmon_XE
oracle 5083 1 0 11:48 ? 00:00:00 xe_mmnl_XE
oracle 5085 1 0 11:48 ? 00:00:00 xe_d000_XE
oracle 5087 1 0 11:48 ? 00:00:00 xe_s000_XE
oracle 5089 1 0 11:48 ? 00:00:00 xe_s001_XE
oracle 5091 1 0 11:48 ? 00:00:00 xe_s002_XE
oracle 5093 1 0 11:48 ? 00:00:00 xe_s003_XE
Merci bien pour ce tuto d'installation d'oracle.