LDAP Instances doesnt show up on Sun Server Console

Hello guys,
I am having a wierd problem with Sun Java Directory Server. I have a bunch of LDAP instances running but I am not able to view them on Sun Server Console. I can see slapd processes running on Windows Services and Task Manager. I can also connect to these instances through LDAP Browser. FYI: I am running Sun Java Directory Server 5.2.4 on Windows 2003 Std SP1. Any help is greatly appreciated.
Thanks.

Thanks Ludovic. Netscape root was corrupted when we deleted an instance. We had to import back netscaperoot.ldif from our LDAP backup. If anyone has a similar problem, Check if all the directory server instances are showing up under Server Group. If all the instances show up, launch console in debug mode and see if console cannot access anyone of the instances properly.
D:\Sun\MPS>startconsole -D 9:all -f "D:\console_debug". FYI: You can use saveconfig.bat to backup Netscaperoot as an .ldif file.

Similar Messages

  • Oracle RAC on Sun server.

    Hello Oracle RAC gurus,
    I have below questions, I would highly appreciate if anyone can answer these.
    1) Is it must to have identical server model and configuartion for Oracle RAC?
    2) I have Sun Fire 280R machine with Sun solaris 10. Can I install Oracle RAC on this
    using Oracle VMWare?
    3) Please let me know below scenario is possible or not,
         If I have Oracle Databases(single instances) are running on my Sun server box, can I
    use this machine as primary node for Oracle RAC? If this is not possible then
         can I use as secondary node?
    Thanks gurus.

    For 1: NO, the hardware does not need to be exactly the same. The nodes can be different models, with different CPU speed and different RAM sizes. The only consideration is that they must be the same O/S. This is a hardware vendor issue. They determine which configurations they are willing to support.
    For 2: RAC is currently not supported in Oracle VM.
    For 3: YES, at first glance you can do this. Note that the RAC database requires a cluster database home. Thus, you would need to install a cluster database home in addition to the Single Instance database home(s). However, this answer does not consider whether or not your node would be capable of hosting another database instance in regards to performance.
    Thanks.

  • Custom Single Container not showing up in the Admin console

    I developed a custom single container and deployed the java files and xml's successfully.
    But the container doesnt show up in the admin console as a container channel.
    I am not able to add and delete new channels into this container .Can anyone throw light on this issue..
    raj

    I'm seeing the same thing as Simon, I changed the iOS device name in both places on an iOS device and the name in the Intune console is still "iPhone" which is really unhelpful as I'm sure you can imagine.  Is there some other place
    that we should be going to rename devices so they are more easily identifiable in the Intune console?
    Thanks!

  • Cant create an LDAP instance on DSCC

    Hi everybody,
    I've just installed directory system server 7, and I deployed the DSCC war file in tomcat, everything is ok, but when I tried to create an ldap instance i get the next error:
    Error executing the operation. The exception is com.sun.directory.nquick.NquickException.
    Please any help, I have'nt found anything on the web
    Thanks

    I had this same issue, when attempting to create a new server under Directory Servers->Servers in the DSCC admin gui. I am using the latest version of Sun DSCC and Oracle DS EE downloaded from Oracle yesterday (6/17/2001): DSEE.7.0.Windows-X86
    To get around the problem, I created my instance using the dsadm command line tool:
    C:\dsee7\bin> dsadm create C:\ldap_instances\my_instance
    ** NOTE** be sure that "my_instance" directory doesnt exist.
    The tool then asked for Directory Manager password and confirmation (which I entered) and then I started the instance:
    C:\dsee7\bin> dsadm start C:\ldap_instances\my_instance
    I then reopened DSCC and returned to Directory Servers->Servers tab, and selected "Register Existing Server..." in the "--More Server Actions--" drop down list. After entering my info and contuing through the options, my instance finally shows up.

  • EJB deployed but doesnt show up in JNDI tree on weblogic

    Hi,
    I have a sample EJB deployed on weblogic 10.3 server. My Bean class contains following code.
    ========================================================================
    @Stateless (mappedName = "DemoEJB")
    @TransactionManagement(TransactionManagementType.BEAN)
    public class DemoBean implements SessionBean {
         static final boolean verbose = true;
         private transient SessionContext ctx;
         private transient Properties props;
         @SuppressWarnings("deprecation")
         @Override
         public void setSessionContext(SessionContext ctx) throws EJBException,
                   RemoteException {
              // TODO Auto-generated method stub
              if (verbose)
              System.out.println("setSessionContext called");
              this.ctx = ctx;
              props = ctx.getEnvironment();
         public String demoSelect()
    throws RemoteException
    return("hello world");
    ===========================================================================
    I have created a jar file for the above class using eclipse and deployed it on weblogic. I can see the EJB in the <Deployment> on weblogic but it doesnt appear in <EJB> on JNDI tree view. Therefore i cannot access it from my client code (also written in Eclipse IDE).
    I will appreciate any guidance in this regard.
    Thanks
    Regards,
    Awais

    Hi,
    i have the same problem with yours
    This is my annotation with EJB3.0:
    @Stateless(mappedName="ConSession")
    @Remote(ConBeanRemote.class)
    @Local(ConBean.class)
    and i have a weblogic-ejb-jar.xml to define my jndi name
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-ejb-jar xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-ejb-jar"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd
              http://www.bea.com/ns/weblogic/weblogic-ejb-jar
              http://www.bea.com/ns/weblogic/weblogic-ejb-jar/1.0/weblogic-ejb-jar.xsd">
    <weblogic-enterprise-bean>
         <ejb-name>ConSession</ejb-name>
    <stateless-session-descriptor>
         <business-interface-jndi-name-map>
              <business-remote>com.staffware.ConBeanRemote</business-remote>
              <jndi-name>ConSession#com/staffware/ConBeanRemote</jndi-name>
              </business-interface-jndi-name-map>
              </stateless-session-descriptor>
              <local-jndi-name>com/ConfigurationManagerBeanLocal</local-jndi-name>
         </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    [ the most important: I also have specify JNDI in a java file like this
              beanRemoteJNDIs.put("ConBeanRemote","ConSession#com/staffware/ConBeanRemote");
              beanLocalJNDIs.put("ConBean","java:comp/env/com/ConBean");
    and i can find the ConSession#com/staffware/ConBeanRemote in the jndi tree . but it shows like Multilevel directory tree
    and when i login the website and click the button
    .another error comes out :
    13:35:55,046 ERROR [EJBDelegate] Unable to lookup reference java:comp/env/com/ConBean for ConBean!
    javax.naming.LinkException: [Root exception is javax.naming.LinkException:  [Root exception is javax.naming.NameNotFoun
    dException: While trying to look up /app/ejb/CONFIG-ejb-2.0.jar#ConSession/local-home in /app/webapp/CO
    M/18328287.; remaining name '/app/ejb/CONFIG-ejb-2/0/jar#ConfigurationManagerSession/local-home']; Link Remaining Name:
    'java:app/ejb/CONFIG-ejb-2.0.jar#ConSession/local-home']; Link Remaining Name: 'com/ConBean'
    at weblogic.jndi.internal.WLNamingManager.getObjectInstance(WLNamingManager.java:104)
    at weblogic.jndi.internal.BasicNamingNode.resolveObject(BasicNamingNode.java:884)
    at weblogic.jndi.internal.ApplicationNamingNode.resolveObject(ApplicationNamingNode.java:187)
    what should i do ?
    and should i specify the jndi name in the java file . the JNDI name defined in the weblogic is right?
    can you help me ?
    thanks very much in advance!

  • SSO authtication doesnt show "invalid password" message

    We have 2 SSO servers
    In once, if the user enters invalid password, then same page comes up with message "invalid username/password"
    This is the expected behaviour
    In other, same page comes up, but without any message
    This is misleading and the user keeps thinking why he is not able to proceed without realizing that the password was incorrect
    I am sure this is related to some settings
    But dont know what needs to be changed
    Or what shall I compare bteween the server where its working fine as against the server, where it doesnt show up the right message
    Please suggest

    So, I assume then that your login page is ok. You tried it and it was there, but you are not being redirected to this page. Can you try re-registering your site using the SSO registration tool. For example:
    e.g. for unix:
    $ORACLE_HOME/sso/bin/ssoreg.sh \
    -site_name application.oracle.com \
    -host ukp16016.uk.oracle.com -port 1521 -sid iasdb \
    -success_url http://application.oracle.com:7779/osso_login_success \
    -cancel_url http://application.oracle.com:7779 \
    -logout_url http://application.oracle.com:7779/osso_logout_success \
    -home_url http://application.oracle.com:7779 \
    -config_mod_osso TRUE \
    -oracle_home_path $ORACLE_HOME \
    -u root \
    -sso_server_version v1.2 \
    -verbose TRUE
    e.g. for Windows (with no line breaks):
    %ORACLE_HOME%\sso\bin\ssoreg.bat
    -site_name application.oracle.com
    -host ukp16016.uk.oracle.com -port 1521 -sid iasdb
    -success_url http://application.oracle.com:7779/osso_login_success
    -cancel_url http://application.oracle.com:7779
    -logout_url http://application.oracle.com:7779/osso_logout_success
    -home_url http://applicationk.oracle.com:7779
    -config_mod_osso TRUE
    -oracle_home_path %ORACLE_HOME%
    -u system
    -sso_server_version v1.2
    -verbose TRUE
    2. If this OHS should protect any URLs in addition to /oiddas edit the mod_osso.conf file at this point.
    3. Then update the DCM repository for the appropriate Apache server:
    Unix:
    $ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct OHS -v
    Windows:
    %ORACLE_HOME%\dcm\bin\dcmctl updateconfig -ct OHS -v
    4. Now restart the instance:
    Unix:
    $ORACLE_HOME/dcm/bin/dcmctl stop -v
    $ORACLE_HOME/dcm/bin/dcmctl start -v
    Windows:
    %ORACLE_HOME%\dcm\bin\dcmctl stop -v
    %ORACLE_HOME%\dcm\bin\dcmctl start -v
    If you have metalink access, this is covered in Note:249408.1

  • Problem with adding CA signed Certificate to DSEE Ldap Instance

    I am trying to enable SSL with the SUN DSEE LDAP server.
    DSEE version: 6.0
    Solaris version: 10.3
    I am following instructions from the SUNDSEE-ADMIN guide to generate the cert request, and got the signed certificate file. So here is my procedure:
    1. generate cert request:
    dsadm request-cert ...
    2. send the request file to CA
    3. got the signed cert back from CA with format like this:
    ----------BEGIN CERTIFICATE------------
    ----------END OF CERTIFICATE----------
    So now I got two files at hand: the cert request, and the signed cert.
    Then I am trying to add the cert to the cert store for my LDAP instance:
    $ dsadm add-cert /path/to/instance my-cert ldapcert.crt
    Unable to find private key for this certificate.
    Failed to add the certificate.
    $ dsadm add-cert -C /path/to/instance my-cert ldapcert.crt
    This command will complete. But if you list cert, you can only see the CA cert, no new server cert.
    My question is, where is this private key file stored? I searched on the forum, and someone mentioned the private key is generated when you issue request-cert command.
    So how can I add the server cert? What procedure am I missing here? If you only get one cert file which only has the public key in it from CA, how do you add the server cert apart from the CA cert?
    Let me know if I have a wrong understanding for the procedure.
    Thanks!

    I looked at this certificate under windows. It has a certificate chain issued for our LDAP server:
    CA root
    |----- LDAP server
    It looks fine. It is the signed server cert.
    I tested import-cert the self-signed cert which has both the private key and public key packed together, and it worked. A new cert is shown up for both "dsadm list-certs" and "dsadm list-certs -C".
    But when trying to import the CA-signed server cert, it complains that no private key is found.
    I am following instructions from this link:
    http://docs.sun.com/app/docs/doc/819-0995/6n3cq3aqp?a=view
    But if I do add-cert, I got this error:
    $ dsadm add-cert /path/to/instance my-cert ldapcert.crt
    Unable to find private key for this certificate.
    Failed to add the certificate.It works to import the CA cert though. Can someone advise about the private key missing issue?
    Thanks.

  • Can I install a second instance of i-Calender on the server where right now is running the first instance? How?

    The first instance is running on a Sun R420 Enterprise
    server. The second instance will run in the same server.

    When you say "Authorized"  you mean in the sense of Itunes Store Authorized? if so the system in Question is authorized it is my primary Workstation and was waiting until iCloud came out to update to Lion. My MBP , and 2006 MP are all running Lion and are part of the 5 systems "authorized". I did not run into this issue with either the MBP or the MP when i installed and I bought two copies at the same time on my the first day Lion was available.
    Do you know the mechanism with which the App Store tracks purchases on different computers prior to iCloud coming out?
    once again thanks for your response
    chris meredith

  • Wishlist for groups administration in LDAP server console

    I wonder why there is no basic support in administration of
    groups in the Directory Server console. What I and others
    are missing is:
    - search for users in large static groups
    - sort columns in group member display by clicking on column titles
    - search and display of group memberships of an user entry
    and - if I'm at it - display the DN of
    a user entry if found through the register tab 'users and groups' search dialog of the first console window to see where the user is located in the directory tree.
    Yes, we could buy another software to manage that, if we had the budget and write it by ourselfs if we had the budget. But normally the console is sufficient and I want to
    administrate everything in one place. Other tools may not understand Sun LDAP roles so I would have to use two or more tools.
    Frerk Meyer

    Sharmila,
    Have you gone through http://docs.oracle.com/cd/E13222_01/wls/docs92/secmanage/atn.html#wp1198953
    Configure a new LDAP Auth Provider and use the appropriate values to your LDAP.
    Then if you navigate to Global Roles -> Deployer within Admin Console, you can add the particular group to this role.
    Thanks,
    Paz

  • Agent job step - using print statement in tsql step doesnt show up

    I want to execute a procedure, then use print to write a short message into the job history.  The step executes fine, but the message doesnt show up in the history.
    print 'hello'
    what gives?

    PRINT command is not intended to be used for writing into the history. If you need such information, you may have a special log table and write into it using insert statement.
    Alternatively, you may google on writing to text file from SQL Server, but I would not recommend that approach.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Migration 11,5.10.2 from AIX to sun server

    Hello,
    I am Planning on oracle applicaiton migration from AIX to Sun server. which is the best document to follow.
    Thanks
    Prince

    Please check .
    if endian format is compatable, you can consider using transportable database for migration .
    Using Transportable Database to migrate Oracle E-Business Suite 11i Using Oracle Database 10.2.0 or 11.1.0 [ID 729309.1]
    Application Tier Platform Migration with Oracle E-Business Suite Release 12 [ID 438086.1]
    Migration of Oracle Database Instances Across OS Platforms [ID 733205.1]
    Cross-Platform Migration on Destination Host Using Rman Convert Database [ID 414878.1]
    Note: - 10g Release 2 Export/Import Process for Oracle Applications Release 11i     362205.1
    Note: - 10g Export/Import Process for Oracle Applications Release 11i     331221.1
    Debugging Platform Migration Issues in Oracle Applications 11i [ID 567703.1]
    How to Log Good Service Requests for Database Upgrade/Migration Issues [ID 732897.1]
    Oracle Applications Installation Update Notes, Release 11i (11.5.10.2)      316806.1

  • My menu button in firefox doesnt show the set up sync account option

    I saw the video, for which im trying to set up an account for my ipod touch, went to the menu button as they indicate and it doesnt show me the option to set up a sync account. No where to be found.

    I'm afraid you can't get your data from the server without the original recovery key and it sounds like that got wiped out when you reformatted your hard drive. Here is the documentation on getting a copy of your recovery key (sounds like this isn't much use in your case) https://support.mozilla.org/en-US/kb/how-do-i-manage-my-firefox-sync-account#w_where-can-i-find-my-recovery-key
    I filed a bug about this issue https://bugzilla.mozilla.org/show_bug.cgi?id=727832
    I'm sorry I'm not able to help you more.

  • Jconsole doesnt show processes

    hello folks!
    on my new PC, jconsole doesnt show the local processes (ill try to connect to remote processes soon), even with -Dcom.sun.management.jmxremote - tough, im running jdk6 so it shouldnt make any diff
    do any of you have any clue?

    This item in the jconsole FAQ might be the issue: http://java.sun.com/j2se/1.5.0/docs/guide/management/faq.html#win1
    If you have Java SE 6 installed then it should list the user's VMs even in the case that the temporary file system can't be secured.

  • RFC doesnt show up in reimport model

    Hi,
    We have created a ZRFC and when reimport and add that to the  model . after i give the login credentials for the ECC and search for the RFC it doesnt show up in the search. But it still exists in the system. Do I have to do anything like exposing it as service to show up in the list.
    Please let me know.
    Thanks,
    James

    Hi,
    Yes, RFC should be remote enabled. Also, make sure that your server credentials are pointing to server , where RFC exists and not any other server.
    Regards,
    Apurva

  • How can I utilize my same sun server?

    Hello All,
    I have 2 (two) Sun Edge V1280 server with 8 Processor and 32 GB RAM
    And I have one Sun StoreEdge 3910 T3
    One of this 2 server is not used at all.
    For Apps 11.5.10.2 Application stack and Database stack for production instance is installed on the same server.
    I want to utilize another server also cause users feeback is system is slow !!!
    1) Should I move application stack on another server? If yes then how?
    Or just few components?
    Regards
    Chirag Patel
    Kenya

    I never liked the T3 arrays devices from Sun. Last time we moved to 3510 FC arrays, 11i performance more than doubled.
    I would be willing to bet 98% of your load is coming from the database sessions. The easiest move you could do it move the database and database Oracle Home to the other server. So even if you move all middle tier processes, your load average on the back end (and user perceived performance) might not change much unless you migrate to RAC.
    Make sure you have current stats for the SYS schema, and do some performance tuning on long running processes. Tune the top 10 processes you see in statspack or SQL Area report, or manage the concurrent managers so that no more than one or two long running processes run concurrently, and users will see a huge difference. Also check to see if you have indexes that need to be rebuilt, especially in APPLSYS schema.
    SQLAREAT.SQL - SQL Area, Plan and Statistics for Top DML (expensive SQL in terms of logical or physical reads)
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=238684.1
    Collecting Statistics with Oracle Apps 11i
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=368252.1
    bde_rebuild.sql - Validates and rebuilds indexes occupying more space than needed
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=182699.1

Maybe you are looking for

  • Content Conversion Server

    Where does Content Conversion Server fit in? Is it required to be installed first before you install any of the other components? (Records Management, UCM, etc.) If you purchase UCM is Content Conversion Server included as well?

  • Open New Sessions and attach

    Hello, I am trying to figure out how while attacehd to SAP from VBA excel to open a new session and continue the task in the new session. The end goal is to run 3 different transactions and have them up each in a seperate window. this is what I have

  • Labview webcam Problem

    Could anyone help me, please? I've download LabVIEW webcam library from Peter Parente'Homepage http://www.cs.unc.edu/~parente/labview/webcam1.4.zip I use my webcam to capture indicator display screen but the charactor that i get is reverse (like look

  • Giving access to other computers

    I successfully configured the WRT54G and able to access wireless without any problem. Now I bought another laptop and I am not able to access internet wirelessly from new laptop. I entered the MAC address of the new laptop using the weblink of router

  • Stereo Bluetooth (A2DP?) in iPhone 3GS

    I thought I would hear about the support for stereo bluetooth in the newest iPhones. If it was added, I would have expected that it was talked about in the Developer's Conference presentation. But since there was no mention of it, I'm thinking that i