Oracle11g localhost: 1158 / em не может подключиться

11552
Ramkumar

В моей профессиональной версии Windows 7 я установил Oracle Database Express Edition 11g Release 2, который загружается с Oracle.com. SID - «orcl», имя пользователя - «system».

Когда я пытаюсь подключиться к Database Control - orcl (localhost: 1158 / em), он работает нормально с первого раза, но после перезапуска Windows localhost: 1158 / em не подключается.

Браузер говорит «временно недоступен».

После установки Oracle я также установил PostgreSQL 9.2, phpPgAdmin 5.1 на моем сервере WAMP 2.0.

Примечание. Я отключил брандмауэр Windows и отключил антивирус.

-1
Вау, вы упустили практически все полезные детали. На какой ОС вы работаете? Версия? Как вы установили Oracle? Как вы установили PostgreSQL и откуда? Что в логах Oracle? и т. д. и т. д. Прямо сейчас кому-то потребуются серьезные психические способности, чтобы с пользой ответить, если только они сами не видели, чтобы эта проблема произошла. Craig Ringer 10 лет назад 1

1 ответ на вопрос

1
Shah Nawaz

There are following step to start the dbconsole. Step one first check your database is up and running.

How will you check it? On the linux prompt type the following command.

$ ps -ef|grep oracle 

If it is not showing any thing then connect with Sql, with sysdba

$ sqlplus / as sysdba sql>select name from v$database; 

It will show you the database name. Then shutdown the database...

sql>shut immediate; sql>start nomount; sql>alter database mount; sql>alter database open; sql>exit 

On linux prompt check the listener is up and running or not. The command to check for the listener is as follows

$ lsnrctl status 

If it is not up and running then start your listener first. Commmand to start the listener is as follows

$ lsnrctl start 

After that you start the emctl with following command

$ emctl start dbconsole 

It will start your enterprise manager. Now click on the link or copy paste link into the browser. If you have missing setting into browser, then check the setting of it.

Он использует Windows, но локально. Journeyman Geek 10 лет назад 1

Похожие вопросы