Can't start Oracle Directory Manager

Hi,
I have installed and configured OID in OFM11g, but I have no idea how to validate it. I am not sure whether I configured it successful.
I have installed identity server 10.1.4.3.0 refering to link . It said that if I installed it successful, I can start OAM Identity Server service ( [step 18|http://www.oracle.com/technology/obe/fusion_middleware/im1014/ovd-oam/oam-ovd/install_oam/install_oam.htm#t2] Start -> Control Panel -> Administrative Tools -> Services, right-clicking the Oracle Access Manager Identity Server (identity) service, and selecting Start.) However, when I start the service, I can't see Oracle Directory Manager ( [step 19|http://www.oracle.com/technology/obe/fusion_middleware/im1014/ovd-oam/oam-ovd/install_oam/install_oam.htm#t2] ). Actually, nothing happened.
When you completed the installation of Identity Server, could you open the Oracle Directory Manager ?
Your help is appreciate.
Best,
Sunny.Zhang
Edited by: Sunny.Zhang on 2009-10-4 上午10:21

Hi,
You can validate OID installation through 'opmnctl' and/or 'ldapbind'. You can access 'Oracle Directory Services Manager' through a browser using the url -
'http://<host>:<port>/odsm/faces/odsm.jspx'.
Here is a link which shows screenshots of the overview of 'Oracle Directory Services Manager'.
-- Pramod Aravind

Similar Messages

  • Can't start Oracle Enterprise Manager

    Hi
    We installed Oracle Database 10g on Sun Solaris SPARC 64 bit.
    I am trying to access Oracle Enterprise manager but cannot.
    I tried to start the dbconsole but got the following error:
    /external1/oracle/testdb/9.2.0/bin
    ./emctl start dbconsole
    result was :./emctl: No such file or directory
    Can you please help me solve this problem?
    Regards
    Quintus

    bash-3.00$ export
    ORACLE_HOME=external1/oracle/testdb/9.2.0/
    bash-3.00$ export ORACLE_SID=TEST
    bash-3.00$ emctl status dbconsole
    bash: emctl: command not found
    I seriously doubt you ever read my previous post.
    You can try the commands a thousand times on your 9i installation, it's not going to work period.

  • Can't start Oracle Enterprise Manager Application Server Control:

    I've install AS 10g 10.1.2 on x64 Win XP64 with the option of just Oracle J2EE and web services.
    Everything installed fine but when I try to connect to the Enterprise manger server control I get :
    IOException in sending Request :: Connection refused: connect
    Reading the trouble shooting guide I see that maybe the Apache variable max connections needs upping. Mine was set to 150 and I upped it to 200 (and restarted)
    still not joy.
    can anyone help?

    According to metalink certification there is an issue with Win XP 64 bit for OAS 10.1.2.0.2 which is that
    Only Installation Types Supported is J2EE OracleAS Developer Kit
    Maybe you could consider OAS version 10.1.3.x ?

  • Automatically starting Oracle Enterprise Manager with chkconfig

    Folks,
    While Oracle Linux 6 is out (6.2 actually), Oracle has yet to get everything 'working out of the box' with 6.2. Right now (June 2012) you've got to download patches from Oracle, the new way to start services in Linux 6, upstart, doesn't work with all Oracle features yet, etc. Update: You can still use chkconfig with OL6.
    Because of the above, I've been using Oracle Linux 5.8. Linux 5 uses something called chkconfig to register services. You first need to put a script in the right directory: /etc/rc.d/init.d. Linux looks in this directory for scripts and runs those scripts with either a start or stop after them depending on if the system is coming up or going down. Technically this happens every time you change your runlevel (google Unix runlevels for more info), not just when the system goes up or down.
    Here's a script that you can put in /etc/rc.d/init.d. I named mine oracleEM:
    [root@localhost ~]# cd /etc/rc.d/init.d
    [root@localhost init.d]# vi oracleEM
    Enter i to enter insert mode and then enter the below (or just copy and paste it)
    *#!/bin/sh*
    *#chkconfig: 2345 80 05*
    *#description: Oracle Enterprise Manager*
    ORA_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
    ORA_OWNER=oracle
    ORA_SID=orcl
    *# We're checking to see if ps returns 1 or 2 results for pmon_orcl*
    *# If there are two, Oracle is running, one we are just seeing our grep*
    ORACLE_STATUS=$(ps -eaf | grep pmon_$ORA_SID | wc -l)
    *if [ ! -f $ORA_HOME/bin/emctl ]*
    then
    echo "Enterprise Manager startup: cannot start"
    exit
    fi
    case "$1" in
    *"start")*
    *if [ $ORACLE_STATUS -lt 2 ]*
    then
    echo "Waiting for Oracle instance $ORA_SID to start before starting Enterprise Manager"
    fi
    *while [ $ORACLE_STATUS -lt 2  ];do*
    echo "Waiting...."
    sleep 5
    ORACLE_STATUS=$(ps -eaf | grep pmon_$ORA_SID | wc -l)
    done
    su - $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole"
    *"stop")*
    su - $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
    esac
    Press the Esc key to leave insert mode, then type *:wq* to write the file and quit.
    We'll need to make the script executable, so we need to run the following command:
    [root@localhost init.d]# *chmod +x oracleEM*
    Finally we need to register the oracleEM script with Linux using the chkconfig command:
    [root@localhost init.d]# *chkconfig --add oracleEM*
    Now Enterprise Manager will start up automatically when you start your system, but only after Oracle has started.
    Rich
    Edited by: RichS on Jun 9, 2012 1:00 AM

    The script you are using will not work for RHEL or Oracle Linux since it is incorrect and missing important coding.
    You can probably fix the script by removing the dash (-) from the su command and adding the lockfile that is required for RHEL to process the stop routine at system shutdown. The dash will reset the shell environment and the startup won't work. You should also start it in the background in order not to prolong the system startup more then necessary.
    lockfile=/var/lock/subsys/oracleEM
    start)
       su $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole &" &>/dev/null
       touch $lockfile
    stop)
       su $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
       rm -rf $lockfile
    ...You do not need to start your Oracle instance before starting dbconsole. So there is no need for the "sleep" routine. You can start the Oracle Database control console even when the instance is down:
    For instance:
    <pre>
    [oracle@vm005 ~]$ ps -ef | grep pmon
    oracle 17749 10343 0 22:48 pts/3 00:00:00 grep pmon
    $ emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    https://vm005.example.com:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ....... started.
    </pre>

  • Problem of Connexion to Oracle Directory Manager

    When I try to connect to Oracle Directory Manager with
    User: orcladmin
    Password: welcome
    Serveur: localhost
    Port 389
    I got a message “server is not started”, but i check by going contro panel->administor tools-> services and I find “OracleDirectoryService_ORCL” and “OracleServiceORCL” are started. But it’s not possible to start “OracleOraHome92HTTPServer “ because there is maybe a error in windows or a error in the service.
    has anybody faced a similar issue. And how to resolve it
    Best Regards

    In the screen of connexion to Oracle Directory Manager(part of Oracle9i Database), when I click LOV to select l’user, I got a message “le server LDAP is stopped” and I find in the champ of port is 389 and we can’t change it.
    So I try again connect to Oracle Directory Manager with
    User: orcladmin
    Password: welcome
    Serveur: localhost
    Port 389(default)
    I got also the same message “server is not started:localhost/389”, and i check by going contro panel->administor tools-> services and I find “OracleDirectoryService_ORCL” and “OracleServiceORCL” are always started.

  • How can i start oracle databases? i am using Oracle 8.1.6 for linux.

    when i run dbstart,it gives me following message:
    Database "ora4cweb" warm started.
    but when i use sqlplus,it says:
    ORA-01034: ORACLE not available
    i made a mistake ,i shutdown my linux before i shutdown oracle databases,how can i start oracle databases now?thanks in advance.

    try it without the scripts...
    login to linux as oracle
    start server manager
    svrmgrl
    connect internal
    startup
    select sysdate from dual;if that works
    exitcheck listener
    lsnrctl
    statif nothing running type
    start
    exitnull

  • TNS-04012: Unable to start Oracle Connection Manager instance.

    Hi,
    I've tried to configure Connection Manager but i fails on:
    TNS-04012: Unable to start Oracle Connection Manager instance
    This is my configuration (I've removed as much as possible to remove possible errors):
    CMAN1=(CONFIGURATION=
      (ADDRESS=(PROTOCOL=tcp)(HOST=<hostname>)(PORT=1522))
      (RULE_LIST=
       (RULE=(SRC=*)(DST=<IP>)(SRV=*)(ACT=accept))))
    CMCTL> administer CMAN1
    Current instance CMAN1 is not yet started
    Connections refer to (ADDRESS=(PROTOCOL=tcp)(HOST=<hostname>)(PORT=1522)).
    The command completed successfully.
    CMCTL:CMAN1> startup
    TNS-04012: Unable to start Oracle Connection Manager instance.I've reviewed following notes without getting any closer (298916.1 and 733421.1)
    I can't see any errors in any of the following possible issues:
    * The max_connections value must not exceed 1024. Maximum acceptable value is 1024
    * The max_gateway_processes value must not exceed 64. Maximum acceptable value is 64
    * The trace_directory and log_directory values must be valid
    * The trace_level and log_level values do not support numeric values 6,10 and 16
    * Duplicate sections
    * Misspelled parameter names or parameter values
    * Host values that are not resolvable
    * Rule list must allow the local address of the machine where cman is installed
    * A specfic address in SRC or DST for a rule in the rule list must be resolvable(Try ip address range as a workaround and see the enhancement request 6125025)
    * Windows: Ensure the ORA_DBA group is present and O/S user starting CMAN is in the group
    * Windows: Ensure any firewall is not blocking Oracle from using Network
    All help are appreciated!
    Cheers

    933746 wrote:
    Osama_mustafa wrote:
    Refer to
    Troubleshooting Guide: TNS-04012: Unable to Start Oracle Connection Manager Instance [ID 733421.1]Hi,
    As I've stated in my post I've reviewed this post without any help.I would suggest you read the provided doc [ 733421.1] more thoroughly.... the answer is there.

  • OID installation : Oracle Directory Manager

    Hello
    This is a 'please tell me what step i am missing' type of question.
    I have completed the OID installation.
    When I login into the Oracle Directory Manager using the cn=orcladmin user I see a blank page and most of the Menu Items greyed out.
    Can you please advise on which post-installation I am missing out on?
    Thanks
    Cyril

    Well, none.
    This should give you a complete access. Check your installActions.log file for errors.
    cu
    Andreas

  • Error trying to log into Oracle Directory Manager

    I am receiving an error message when I try to log into Oracle Directory Manager. This is the first time I am trying to log in, I am trying to login with the username cn=orcladmin, and with the password welcome, which is the default. I then receive the error message "Server is not up and running". I thought I started an OID instance with oidctl.
    I am running on w2k.
    I am using the default port 389, at least thats what I accepted while installing the infrastructre.
    Any advise?

    From the main page for this forum (http://forums.adobe.com/community/creative_cloud) please see the announcement.
    Creative Cloud is experiencing issues at this time.  We are investigating and working to restore service as soon as possible.  This post will be removed once the issue is solved.

  • Error Oracle Directory Manager

    Dear all,
    1) I installed Oracle database 10g on windows XP and installed also a loopback: now I can log into database, But when I am trying to connect to Oracle Directory Manager it says "Server is not up and running: host/389". Services are up. Everything seems fine. Can anybody tell me what could be the problem?
    2) I used apache of Easyphp to configure port 389 and 636, now host is running on port 389 and 636 but i'm not able to log in Dyrectory Manager. Can anybody tell me what user i have to insert to login? I'm not able to connect and the system not recognize me...
    Best regard
    Michele

    You can use the Identity Management Infrastructure available on OTN: http://www.oracle.com/technology/software/products/ias/htdocs/101401.html
    --olaf                                                                                                                                                                                                                                                                                                               

  • Can't start up enterprise manager console

    I don't know what cause it, I can't start up enterprise manager console again after installing Oracle DS9i and hasn't any error message. Who know how to troubleshoot it, please tell me know, thank.

    Show us the output of
    emctl status dbconsoleMost of the times, EM stops with DGCP being enabled on the system after the db's creation. I faced alot of it just 2 days ago when 2 of my boxes stopped EM. So show us the output of the above command and to have an idea of basic EM troubleshooting, read this,
    http://oracle-base.com/articles/misc/BasicEnterpriseManagerTroubleshooting.php
    HTH
    Aman....

  • Can't start up enterprise manager console again

    I don't know what cause it, I can't start up enterprise manager console again after installing Oracle DS9i and hasn't any error message. Who know how to troubleshoot it, please tell me know, thank.

    bash-3.00$ export
    ORACLE_HOME=external1/oracle/testdb/9.2.0/
    bash-3.00$ export ORACLE_SID=TEST
    bash-3.00$ emctl status dbconsole
    bash: emctl: command not found
    I seriously doubt you ever read my previous post.
    You can try the commands a thousand times on your 9i installation, it's not going to work period.

  • How to start Oracle Enterprise Manager(Oracle 9i) on Sun Solaris 9 platform

    Hi
    How to start Oracle Enterprise Manager(Oracle 9i) on Sun Solaris 9 platform and Oracle Enterprise Manager(Oracle 10G) on Sun Solaris 10 platform?
    Thanks.
    RJ.

    I need to use it to unlock some accounts.There is a SQL command to do that
    SQL> alter user <username> account unlock;
    Anyway...
    $ export ORACLE_SID=chucky
    $ emctl start dbconsole

  • Help me! why can not start oracle management server?

    maybe for my shutdown and startup database abnormal for several
    times,now the server oracleorahome81management server can't start
    and while i logon to enterprise manager console,it show me a
    error as follow
    "vtk-1002:The Oracle Management Server you are trying to connect
    to is still in the process of initialization. Please wait for it
    to start up completely and then try logging in again"
    the error also when i restart my machine.
    and,the configuration assistant can not logon to database.
    but sql*plus,sql worksheet can work normal.

    Hi,
    Sock Hoon (guest) wrote:
    : I have just installed Oracle Application Server (OAS) on my
    : machine running Windows NT 4.0 Workstation. When I logon to the
    OAS don't run on Win NT with installed service pack 4.
    Go back to service pack 3 or apply patch from Developer 6.0 to
    OAS.
    : OAS manager and tried to start ORB, I got below error message:
    : Please wait while the command is being processed on host ssoh_x
    : YOT-11034, Unable to make address: IP://ssoh_x.jgfhome:2649.
    : Error: YT::EXCEPTION::BADPARAM::NOSUCHADDR
    : Starting ORB processes...Returning filename D:
    : \orant\orb\admin\.event
    : waiting for ORB to be ready...
    : YOT-11034, Unable to make address: IP://ssoh_x.jgfhome:2649.
    : Error: YT::EXCEPTION::BADPARAM::NOSUCHADDR
    : ORB is not responding. Please restart manually...
    : I have tried to re-install OAS for the second time. But I still
    : got the same problem.
    : I plan to use the OAS, together with Oracle Internet Commerce
    : Server (ICS) to develop an e-commerce project. I am yet to
    : download and install the ICS. I don't have any Oracle databases
    : installed in my machine. I'm using MS SQL Server 7.0 instead.
    : Please advised me on how to configure the ORB so that I'll be
    : able to start the application server.
    Best regards Andrew
    null

  • Can't install Oracle Test Manager

    Hi,
    I’m trying to install Oracle Test Manager and I have got an error message on XE installation step: “installation of OracleXE failed.”
    The first line of log file says : “OXE_Detect: No OATS installed version found. Detecting external OXE version.
    However there is no trace of XE, neigther in Program Files nor in Services. Only the following Oracle services exist:
    •     Oracle Application Testing Suite Helper Service (Open Scipt) =>Running
    •     OracleMTSRecoveryService
    •     Oracleora9i_homeClientCache
    Is there anything to remove in Registry or somewhere else?
    Thanks by advance for your help
    Edited by: user8891760 on 4 juin 2010 00:21

    Hi,
    You can validate OID installation through 'opmnctl' and/or 'ldapbind'. You can access 'Oracle Directory Services Manager' through a browser using the url -
    'http://<host>:<port>/odsm/faces/odsm.jspx'.
    Here is a link which shows screenshots of the overview of 'Oracle Directory Services Manager'.
    -- Pramod Aravind

Maybe you are looking for