我点击此链接关联在 Ubuntu 14.04 上安装 Oracle 11g XE。按照所有步骤操作后,仍然出现以下问题:
~$ sudo /etc/init.d/oracle-xe start
Starting Oracle Net Listener.
Starting Oracle Database 11g Express Edition instance.
Failed to start Oracle Net Listener using /u01/app/oracle/product/11.2.0/xe/bin/tnslsnr and Oracle Express Database using /u01/app/oracle/product/11.2.0/xe/bin/sqlplus.
每当我尝试在 Web 浏览器上打开 Oracle 时,Oracle 仍然无法安装。
http://localhost:8081/apex/f?p=4950
顺便说一句,我的电脑上也安装了 XAMPP。
更新:安装后我这样做了,但是 Oracle 仍然不起作用。
usr@pc: cd /u01/app/oracle/product/11.2.0/xe/bin
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ lsnrctl start
LSNRCTL for Linux: Version 11.2.0.2.0 - Production on 01-JAN-2016 13:03:31
Copyright (c) 1991, 2011, Oracle. All rights reserved.
Starting /u01/app/oracle/product/11.2.0/xe/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 11.2.0.2.0 - Production
System parameter file is /u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora
Log messages written to /u01/app/oracle/diag/tnslsnr/usr-pc/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=usr_pc)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 11.2.0.2.0 - Production
Start Date 01-JAN-2016 13:03:31
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Default Service XE
Listener Parameter File /u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora
Listener Log File /u01/app/oracle/diag/tnslsnr/usr-pc/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=usr-pc)(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
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ sqlplus
Error 46 initializing SQL*Plus
HTTP proxy setting has incorrect value
SP2-1502: The HTTP proxy server specified by http_proxy is not accessible
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ echo $http_proxy
localhost
最新更新:
usr@pc:himadree@himadree-Inspiron-1545:/u01/app/oracle/product/11.2.0/xe/bin$ export http_proxy=http://localhost
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ echo $http_proxy
http://localhost
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ sqlplusError 46 initializing SQL*Plus
HTTP proxy setting has incorrect value
SP2-1502: The HTTP proxy server specified by http_proxy is not accessible
未设置代理但仍然出现同样的错误:
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ unset http_proxy
usr@pc:/u01/app/oracle/product/11.2.0/xe/bin$ echo $http_proxy
usr@pc::/u01/app/oracle/product/11.2.0/xe/bin$ sqlplus
Error 46 initializing SQL*Plus
HTTP proxy setting has incorrect value
SP2-1502: The HTTP proxy server specified by http_proxy is not accessible
错误图片 http://localhost:8080/apex/f?p=4950
安装 Oracle 11g 已经失败了 9 次。我精神疲惫。请给我建议,我该如何修复。如果需要任何进一步的信息,请告诉我。谢谢 :)
答案1
这可能是一个题外话,实际上更像是 Oracle 社区的问题,但您需要检查一些事项。首先,确保您正确设置了所有环境变量(例如 ORACLE_HOME),类似以下内容的命令应该会显示当前设置的路径,但请通过对显示的路径执行 ls 来确保它是正确的:
$ /usr/bin/env |grep ORACLE
or use:
$ echo $ORACLE_HOME
接下来,您可以尝试手动启动监听器,并将 [listenername] 替换为 listener.ora 中存储的监听器名称(通常位于 $ORACLE_HOME/network/admin/ 下):
/usr/lib/oracle/xe/app/oracle/product/11.2.0/server/bin/lsnrctl start [listenername]
注意:默认路径是 /usr/lib/oracle/xe/app/oracle/product/11.2.0/server/bin/lsnrctl,但是您的路径可能不同,因为上面的路径正在寻找 /u01/app/oracle/product/11.2.0/xe/bin
如果您可以启动监听器然后尝试使用 sqlplus 进行连接:
$ sqlplus
SQL> CONNECT SYS as SYSDBA
我猜想如果安装完成时没有出现错误(您可以检查日志),那么可能只是 ORACLE_HOME 设置错误,但日志会显示具体错误消息,这确实有助于您解决问题。希望这些都能有所帮助。