Bonjour,
J'ai installer avec des response file une oracle 11gR2.0.1.0 sur centOS en 64bits.
Tout c'est bien passé (long et fastidieux en fait) et j’accède à ma bdd depuis l'exterieur ainsi qu'a l'interface d'amin EM via un browser.
Suite à mon install j'ai voulu accédé a apex.
J'ai donc lancé la config en faisant ceci :
log en tant que sysdba.
lancement script @apexconf
unlock account ANONYMOUS
=> j'ai reussi à me logger sur l'interface d'admin http://192.168.0.5:8080/apex
Bon c'est là que les ennuis commencent.
J'ai voulu faire une full install de apex.
log en sysdba.
lancement script @apxremov => tout ok
reboot bdd
lancement script @apexins SYSAUX SYSAUX /i/ => tout ok
check de la validation de l'install =>
Code sql : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 select comp_name, version, status from dba_registry where comp_name='Oracle Application Express'; Oracle Application Express 3.2.1.00.10 VALID
lancement conf @apexconf => ok
relancement du oracle XDBHTTP
EXEC BMS_XDB.SETHTTPPORT(8080);commit; => ok
Quand je me log sur http://192.168.0.5:8080/ j'ai une page qui s'affiche avec :
Index of /
Name Last modified Size
OLAP_XDS/ Sat, 15 Aug 2009 00:35:56 GMT-
olap_data_security/ Sat, 15 Aug 2009 00:35:56 GMT-
public/ Sat, 15 Aug 2009 00:30:14 GMT-
sys/ Sat, 15 Aug 2009 00:31:15 GMT-
xds/ Sat, 15 Aug 2009 00:35:56 GMT-
Mais quand j'essaie les url d'apex :
http://192.168.0.5:8080/apex
ou variante (avec pls / apex/apex_admin, etc) => 404 notfound.
J'en déduis que j'ai loupé une étape dans l'install mais je ne voie pas du tout laquelle ...
edit : quand je ping le listener ca semble ok aussi
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 [oracle@localhost bin]$ ./lsnrctl status LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 03-APR-2011 01:39:55 Copyright (c) 1991, 2009, Oracle. All rights reserved. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521))) STATUS of the LISTENER ------------------------ Alias LISTENER Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production Start Date 02-APR-2011 23:20:38 Uptime 0 days 2 hr. 19 min. 17 sec Trace Level off Security ON: Local OS Authentication SNMP OFF Listener Parameter File /opt/oracle/product/11.2.0/dbhome/network/admin/listener.ora Listener Log File /opt/oracle/diag/tnslsnr/localhost/listener/alert/log.xml Listening Endpoints Summary... (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521))) (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521))) (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=8080))(Presentation=HTTP)(Session=RAW)) Services Summary... Service "SGBD" has 2 instance(s). Instance "SGBD", status UNKNOWN, has 1 handler(s) for this service... Instance "SGBD", status READY, has 1 handler(s) for this service... Service "SGBDXDB" has 1 instance(s). Instance "SGBD", status READY, has 1 handler(s) for this service... The command completed successfully
Partager