Change Sun Admin Server IP.

Hi,
We are using Directory Server 5.2 SP 2 HF2, and have installed the server in testing env, but now need to change this to a production ip address. Is this an easy process and how do you go about doing this?
There is a script called admin_ip.pl provided with the directory.
If we use that script will that do the IP address change. Are there any known issue's using this script.
Thanks

You may reference this post:
http://supportforum.sun.com/network/index.php?t=msg&th=1118&start=0&rid=0
Gary

Similar Messages

  • Changing Workflow Admin Server

    Hello,
    I have two UCCX servers at seperate locations and need to setup wrap up data on each. For the life of me I cannot figure out how to either add a location or change the server I am connected to on the Cisco Desktop Workflow Administrator.
    Anyone have any idea how?
    UCCX 8.5
    Thanks

    The registry defines this. If I was on UCCE CAD I would either change the LDAP in the registry, or run PostInstall.exe from the Desktop\bin to change it. Then restart Desktop Admin. You can flip between them in this way. I assume CAD on UCCX is the same.
    Regards,
    Geoff

  • Moving the Admin Server alone

    I need to change the Admin server alone to a different machine. What is the best way to do that? I do not want to move the managed servers and would prefer a zero-downtime of the Managed servers when the admin server is moved. I have verified the Whole Server Migration documentation, but none of them address the Admin Server Migration.

    may be this link can help you:
    Moving Admin server

  • How do I use Sun Web Server 7.0u1 reverse proxy to change public URLs?

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)
    for hosting some of the public resource and reverse-proxying other parts
    of the URI namespace from other backend servers (content, application
    and other types of servers).
    So far every type of backend server served a unique part of the namespace
    and there was no collision of names, and the backend resources were
    published in a one-to-one manner. That is, a backend resource like, say,
    http://appserver:8080/content/page.html would be published in the internet
    as http://www.publicsite.com/content/page.html
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.
    Another quest, possibly related in solution, was to make a tidy url for the
    first page the user opens of the site. That is, in the current solution when
    a visitor types the url "www.publicsite.com" in his or her browser, our web
    server returns an HTTP-302 redirect to the actual first page URL, so the
    browser sends a second request (and changes the URL in its location bar).
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    So far I found that I can't solve these problems. I believe these problems
    share a solution because it relies on ability to control the actual URI strings
    requested by Sun Web Server from backend servers.
    Some details follow, now:
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    [04/Mar/2009:21:45:34] finest (25095) www.publicsite.com: for host xx.xx.xx.83
    trying to GET /content/MainPage.html while trying to GET /test, func_exec reports:
    fn="service-passthrough" rewrite-host="true" rewrite-location="true"
    servers="http://10.16.2.127:8080" Directive="Service" DaemonPool="2b1348"
    returned 0 (REQ_PROCEED)My obj.conf file currently has simple clauses like this:
    # this causes /content/* to be taken from another (backend) server
    NameTrans fn="assign-name" from="/content" name="content-test" nostat="/content"
    # this causes requests to site root to be HTTP-redirected to a certain page URI
    <If $uri =~ '^/$'>
        NameTrans fn="redirect"
            url="http://www.publicsite.com/content/MainPage.html"
    </If>
    <Object name="content-test">
    ### This maps http://public/content/* to http://10.16.2.127:8080/content/*
    ### Somehow the desired solution should instead map http://public/data/* to http://10.16.2.127:8080/content/*
        Service fn="service-passthrough" rewrite-host="true" rewrite-location="true" servers="http://10.16.2.127:8080"
        Service fn="set-variable" set-srvhdrs="host=www.publicsite.com:80"
    </Object>
    I have also tried "restart"ing the request like this:
        NameTrans fn="restart" uri="/data"or desperately trying to set the new request uri like this:
        Service fn="set-variable"  uri="/magnoliaPublic/Main.html"Thanks for any ideas (including a statement whether this can be done at all
    in some version of Sun Web Server 7.0 or its opensourced siblings) ;)
    //Jim

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)please plan on installing the latest service pack - 7.0 Update 4. these updates addresses potentially critical bug fixes.
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.> now, if all the resources are under say /data, then how will you know which pages need to be sent to which back end resources. i guess, you probably meant to check for /data/page.html should go to <back-end>/content/page.html
    yes, you could do something like
    - edit your corresponding obj.conf (<hostname>-obj.conf or obj.conf depending on your configuration)
    <Object name=¨default¨>
    <If $uri = ¨/page/¨>
    #move this nametrans SAF (for map directive - which is for reverse proxy within <if> clause)
    NameTrans.. fn=map
    </If
    </Object>
    and you could do https-<hostname>/bin/reconfig (dynamic reconfiguration) to check out if this is what you wanted. also, you might want to move config/server.xml <log-level> to finest and do your configuration . this way, you would get enough information on what is going on within your server logs.
    finally,when you are satisfied, you might have to run the following command to make your manual change into admin config repository.
    <install-root>/bin/wadm pull-config user=admin config=<hostname> <hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    you might want to check out this for more info on how you could use <if> else condition to handle your requirement.
    http://docs.sun.com/app/docs/doc/820-6599/gdaer?a=view
    finally, you might want to refer to this doc - which explains on ws7 request processing overview. this should provide you with some pointers as to what these different directives mean
    http://docs.sun.com/app/docs/doc/820-6599/gbysz?a=view
    >
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    please check out the rewrite / restart SAF. this should help you.
    http://docs.sun.com/app/docs/doc/820-6599/gdada?a=view
    pl. understand that - like with more web servers - ordering of directives is very important within obj.conf. so, you might want to make sure that you verify the obj.conf directive ordering is what you want it to do..
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    now, you are in the totally wrong direction. web server 7 includes a highly integrated reverse proxy solution compared to 6.1. unlike 6.1, you don´t have to download a separate plugin . however, you will need to manually migrate your 6.1 based reverse proxy settings into 7.0. please check out this blog link on how to set up a reverse proxy
    http://blogs.sun.com/amit/entry/setting_up_a_reverse_proxy
    feel free to post to us if you need any futher help
    you are probably better off - starting fresh
    - install ws7u4
    - use gui or CLI to create a reverse proxy and map one on one - say content
    http://docs.sun.com/app/docs/doc/820-6601/create-reverse-proxy-1?a=view
    if you don´t plan on using ws7 integrated web container (ability to process jsp/servlet), then you could disable java support as well. this should reduce your server memory footprint
    <install-root>/bin/wadm disable-java user=admin config=<hostname>
    <install-root>/bin/wadm create-reverse-proxy user=admin uri-prefix=/content server=<http://your back end server/ config=<hostname> --vs=<hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    now, you can check out the regular express processing and <if> syntax from our docs and try it out within <https-<hostname>/config/<hostname>-obj.conf> file and restart the server. pl. note that once you disable java, ws7 admin server creates <vs>-obj.conf and you need to edit this file and not default obj.conf for your changes to be read by server.
    >
    I have also tried "restart"ing the request like this:
    NameTrans fn="restart" uri="/data"
    ordering is very important here... you need to do this some thing like
    <Object name=default>
    <If not $restarted>
    NameTrans fn=restart uri from=/¨ uri=/foo.
    </If>

  • Soa managed server is not running after changing weblogic admin password

    hi guys....
    we have oim 11g deployment on weblogic 10.3.5 ....it was working fine....
    we changed the weblogic user password through admin console and changed the boot.properties file also....after that we succcessfully started the adminserver but soa server is not starting and giving following errors...
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090304]Authentication Failed: User weblogic javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User weblogic denied
         at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:261)
         at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
         at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
         at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
         at com.bea.common.security.internal.service.JAASLoginServiceImpl.login(JAASLoginServiceImpl.java:113)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
         at $Proxy28.login(Unknown Source)
         at weblogic.security.service.internal.WLSJAASLoginServiceImpl$ServiceImpl.login(WLSJAASLoginServiceImpl.java:89)
         at com.bea.common.security.internal.service.JAASAuthenticationServiceImpl.authenticate(JAASAuthenticationServiceImpl.java:82)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
         at $Proxy46.authenticate(Unknown Source)
         at weblogic.security.service.WLSJAASAuthenticationServiceWrapper.authenticate(WLSJAASAuthenticationServiceWrapper.java:40)
         at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:348)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:929)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Regards
    jdev

    Which boot.properties did you update Just the admin server? You need to update this file on each of the servers in the domain. Browse to the soa server directory inside the domain directory and there inside the security directory you should see the boot.properties file. You need to update the password in this file.
    -Bikash

  • How to change the machine name for the admin server?

    Hi, I've incorrectly set the machine name for my admin server. I now need to change this, but it's not editable (WLS 10.3.3).
    Is there a way to edit configuration files to get it changed?
    Thanks
    Jason

    Seems all I needed to do was edit config/config.xml (under my domain's path) and change the machine name manually (before shutting the admin server down).
    Regards
    Jason

  • Change Port for OID 11.1.1.6 Admin server weblogic 10.3.6

    Hello,
    Want to know if there is any documentation about how to change OID Weblogic Admin Server Port (7001) to different value (weblogic 10.3.6), ina way that OID , OVD , ODSM could continue to start.
    Regards

    When I searched for String 7001 across Middleware folder, it was being used at more than 50-60 files like
    Middleware\wlserver_10.3\common\templates\scripts\wlst\replicatedDomain.py
    Middleware\wlserver_10.3\common\templates\scripts\wlst\basicWLSSDomain.py
    and across 70 more such files... Both important and not so important files...
    So, manually updating the port is probably quite time consuming...
    However UNIX script may be used to update it in one go...

  • Sun directory server 6.3.1 admin conlsole

    Hi
    In my sun directory server 6.3.1 admin conlsole and Applications view I have the following:
    Server Group
    Server Group (2)
    Administration Server
    Identity Synchronization
    If I click on the Directory Server I get the following error:
    This server component has not yet been downloaded, or it could not be activated. Press Download to retry.
    If I click on Download, I get : (Class loader error) Failed to install a local copy of ds523.jar or one of its supporting files: error result
    What can I do to fix it?
    Thanks!

    Hi
    In my sun directory server 6.3.1 admin conlsole and Applications view I have the following:
    Server Group
    Server Group (2)
    Administration Server
    Identity Synchronization
    If I click on the Directory Server I get the following error:
    This server component has not yet been downloaded, or it could not be activated. Press Download to retry.
    If I click on Download, I get : (Class loader error) Failed to install a local copy of ds523.jar or one of its supporting files: error result
    What can I do to fix it?
    Thanks!

  • On changing 10.6 server's admin name...

    Unlike Mac workstation admin users's short name, it appears like one could change the Admin name in Snow Leopard server.
    Can that be done?
    I'd like to rename the server administrator, rather than make a new admin and then delete the old one.

    Hi
    You can't easily do this for the administrator account on either Server or Client. Not without some consequences. You can change the Long Name easily enough but it's the short name where you'll have problems. What you should do is create another administrator account - one that has the desired name - log in with it and delete the other one, making sure you save the home folder. Assuming you have data you want to keep?
    Alternatively add the desired name an alias or another short name for the existing admin account and use that instead. You can do that a number of ways. Probably the easiest is to use the Accounts Preference Pane. Click the lock, authenticate and hold down the Control Key whilst clicking on the User. Select Advanced. The rest is fairly obvious. Another way is to use WorkGroup Manager. Select the Account and add another short name. Yet another way would be to use the command line.
    HTH?
    Tony

  • Please help me to change the password policy in Sun Directory Server 6.0

    Hi,
    Please help me to change the password policy in Sun Directory Server 6.0

    What are you trying to accomplish? Have you at least read the manual?
    http://docs.oracle.com/cd/E19693-01/819-0995/fhkrj/index.html
    As reported in earlier threads on this forum, DSEE 6.0 IS NOT a release you should use in your production environment, specially if you're starting new projects; consider moving at least to the latest 6.x release which is 6.3.1.1.1
    thanks,
    Marco

  • Changing config-prop temp-path for admin server

    I'm trying to change temp_path for the admin-server from /tmp/admin-server-* to /var/run/admin-server-*, like this:
    temp_path=`wadm get-config-prop --user=admin --password-file=/etc/wadm.pwd --config=admin-server temp-path`
    new_temp_path=`echo $temp_path  | sed 's|/tmp/|/var/run/|'`
    if [ $temp_path != $new_temp_path ]; then
       wadm set-config-prop --user=admin --password-file=/etc/wadm.pwd --config=admin-server temp-path=$new_temp_path
       $inst_dir/admin-server/bin/stopserv
       $inst_dir/admin-server/bin/startserv
    fiBut I end up with a problem. Eigther set-config-prop will fail because the admin server is not running. Or the stopserv will fail because the pid file is not located where the new config states, so it end's up not stopping anything and I have to manually kill the admin server.
    Is there a supportet way of changing temp-path of the admin-server, that does not involve having to manually kill the admin-server?
    Best regards,
    Bjørn Røgeberg

    hi
    i am not sure, if you tried this already. but this is some thing you can try
    wadm set-config-prop user=admin config=<hostname> temp-path=¨some location accessible by web server runtime user say webservd or UNIX user id¨
    wadm deploy-config --user=admin <hostname>
    now if you restart the server instance, it should use the new temporary path.
    hope this helps

  • Change configuration of Admin Server (SOA Suite 11g)

    Hi!
    I'm using SOA Suite 11g. I've installed SOA Suite 11g on a remote machine and I want to access the Oracle Fusion Middleware Control remotly but I can't. I can only access locally by launching a browser on the local machine.
    How I can configure the admin server to be accessible by another computer?
    Thanks in advance
    Tiago Soares

    By default you will be able to access the Admin Console and Fusion Middleware Control from any machine.
    Access like http://hostname:port/em or http://hostname:port/console
    If it is a DHCP machine, try accessing using the machine ip, instead of hostname.
    If this doesn't work, login to Admin console in your local box. Navigate to Servers -> Admin Server. Set the Listen address to that machine's ip or name, now you will be able to access.

  • Changing security option of admin server thru command line

    Dear All,
    As you can understand , we have accidently turned on SSL security =on on the admin server and we need help to turn it off through command. I will really appreciate if someone can help on this....

    Hi All,
    Thanks for your replies. I have managed to start the server without token. Now whenever I click or try to configure through GUI e.. "Secuirty: Request new certificate" or "Edit listen socket from preferences" . I am getting HTTP: 500 error.
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Open the vus304:8888 home page, and then look for links to the information you want.
    Click the Refresh button, or try again later.
    Click Search to look for information on the Internet.
    You can also see a list of related sites.
    HTTP 500 - Internal server error
    Internet Explorer
    And on ERROR log files says
    [15/Aug/2005:14:57:19] failure (14809): for host xxxx trying to GET /https-admserv/bin/security, cgi_scan_headers reports: the CGI program /opt/iplanet/servers/bin/https/admin/bin/security did not produce a valid header (program terminated without a valid CGI header. Check for core dump or other abnormal termination)
    [15/Aug/2005:15:11:03] failure (14809): Internal error: Unexpected error condition thrown (java.lang.StackOverflowError,no description), stack: java.lang.StackOverflowError
    Thanks in Advance
    Regards

  • SUN WEB SERVER WON'T START AFTER CHANGING JVM & CLASSPATH

    hi all,
    i have a sunfire 280r box running solaris 8 which i installed with sun web server 6.0 sp11.
    the default java is
    root@smartvideo1 # java -version
    java version "1.2.2"
    Solaris VM (build Solaris_JDK_1.2.2_10, native threads, sunwjit)
    but this is what i need for my java classes
    root@smartvideo1 # /usr/j2se/bin/java -version
    java version "1.4.2_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
    Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)
    root@smartvideo1 #
    i set the JVM & CLASSPATH settings to /usr/j2se and rebooted the hardware.
    now, when i try to start the web server, i get the ff:
    [08/Apr/2008:03:23:29] info ( 835): iPlanet-WebServer-Enterprise/6.0SP11 B12/15/2006 03:03
    [08/Apr/2008:03:23:29] failure ( 835): Configuration initialization failed: Error running init function load-modules: dlopen of /usr/iplanet/servers/bin/https/lib/libNSServletPlugin.so failed (ld.so.1: ns-httpd: fatal: libjvm.so: open failed: No such file or directory)
    would appreciate any help.
    thanks :)

    hi mv,
    tried your suggestion of installing sun webserver7 but i got an error, something like "can't use sparcv9.so" (too bad i didn't copy the entire error before uninstalling). may have something to do with patches for solaris8. unfortunately, i don't have access to the patches since my support for the hardware ended many years ago.
    was able to get 108434-18 but not 108435-18 which needs an active support account.
    Apr 13, 2008 7:32:55 PM com.sun.web.installer.common.dialogs.CustomDirectorySelectionPanel is
    DisplayComplete
    INFO: Installing Sun Java System Web Server 7.0U2
    Apr 13, 2008 7:32:55 PM com.sun.web.installer.web.dialogs.PatchDetectionListener displayWarni
    ng
    INFO: The following patches need to be installed for the server installation to complete succ
    essfully.
    Patches to be installed: [108435-18]
    Edited by: r3.062167 on Apr 13, 2008 5:16 AM

  • Not able to start admin server

    I am getting this error when ever i am trying to start weblogic server
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=
    48m -XX:MaxPermSize=128m
    WLS Start Mode=Development
    CLASSPATH=D:\app\Oracle\MIDDLE~1\patch_wls1032\profiles\default\sys_manifest_cla
    sspath\weblogic_patch.jar;D:\app\Oracle\MIDDLE~1\patch_oepe1032\profiles\default
    \sys_manifest_classpath\weblogic_patch.jar;D:\app\Oracle\MIDDLE~1\JDK160~1.5-3\l
    ib\tools.jar;D:\app\Oracle\MIDDLE~1\utils\config\10.3\config-launch.jar;D:\app\O
    racle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\app\Oracle\MIDDLE~1\WLSE
    RV~1.3\server\lib\weblogic.jar;D:\app\Oracle\MIDDLE~1\modules\features\weblogic.
    server.modules_10.3.2.0.jar;D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webserv
    ices.jar;D:\app\Oracle\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;D:\app\Oracle
    \MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\app\Oracle\MIDDLE~1\WLSERV
    ~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\app\Oracle\MIDDLE~1\WLSERV~1.3\
    server\lib\xqrl.jar
    PATH=D:\app\Oracle\MIDDLE~1\patch_wls1032\profiles\default\native;D:\app\Oracle\
    MIDDLE~1\patch_oepe1032\profiles\default\native;D:\app\Oracle\MIDDLE~1\WLSERV~1.
    3\server\native\win\32;D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;D:\app\Oracl
    e\MIDDLE~1\modules\ORGAPA~1.0\bin;D:\app\Oracle\MIDDLE~1\JDK160~1.5-3\jre\bin;D:
    \app\Oracle\MIDDLE~1\JDK160~1.5-3\bin;D:\app\291188\product\11.2.0\dbhome_1\bin;
    C:\Program Files\CA\SC\CAWIN\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32
    \Wbem;C:\Program Files\Intel\DMIX;C:\PROGRA~1\CA\SC\CAM\bin;C:\Program Files\CA\
    DSM\bin;D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode)
    Starting WLS with line:
    D:\app\Oracle\MIDDLE~1\JDK160~1.5-3\bin\java -client -Xms256m -Xmx512m -XX:Com
    pileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m -Dweblogic.Name=AdminS
    erver -Djava.security.policy=D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblog
    ic.policy -Xverify:none -da -Dplatform.home=D:\app\Oracle\MIDDLE~1\WLSERV~1.3
    -Dwls.home=D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=D:\app\Oracl
    e\MIDDLE~1\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterat
    iveDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=D:\app\
    Oracle\MIDDLE~1\patch_wls1032\profiles\default\sysext_manifest_classpath;D:\app\
    Oracle\MIDDLE~1\patch_oepe1032\profiles\default\sysext_manifest_classpath weblo
    gic.Server
    <Oct 13, 2010 10:53:42 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting We
    bLogic Server with Java HotSpot(TM) Client VM Version 14.0-b16 from Sun Microsys
    tems Inc.>
    <Oct 13, 2010 10:53:47 AM IST> <Info> <Management> <BEA-141107> <Version: WebLog
    ic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 >
    <Oct 13, 2010 10:53:49 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to STARTING>
    <Oct 13, 2010 10:53:49 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing s
    elf-tuning thread pool>
    <Oct 13, 2010 10:53:49 AM IST> <Notice> <LoggingService> <BEA-320400> <The log f
    ile D:\app\Oracle\Middleware\user_projects\domains\domain1\servers\AdminServer\l
    ogs\AdminServer.log will be rotated. Reopen the log file if tailing has stopped.
    This can happen on some platforms like Windows.>
    <Oct 13, 2010 10:53:49 AM IST> <Notice> <LoggingService> <BEA-320401> <The log f
    ile has been rotated to D:\app\Oracle\Middleware\user_projects\domains\domain1\s
    ervers\AdminServer\logs\AdminServer.log00003. Log messages will continue to be l
    ogged in D:\app\Oracle\Middleware\user_projects\domains\domain1\servers\AdminSer
    ver\logs\AdminServer.log.>
    <Oct 13, 2010 10:53:49 AM IST> <Notice> <Log Management> <BEA-170019> <The serve
    r log file D:\app\Oracle\Middleware\user_projects\domains\domain1\servers\AdminS
    erver\logs\AdminServer.log is opened. All server side log events will be written
    to this file.>
    <Oct 13, 2010 10:53:55 AM IST> <Error> <Security> <BEA-090870> <The realm "myrea
    lm" failed to be loaded: weblogic.security.service.SecurityServiceException: com
    .bea.common.engine.ServiceInitializationException: weblogic.security.spi.Provide
    rInitializationException: A failure occurred attempting to load LDIF for provide
    r Authorizer from file D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\XACMLAuthori
    zerInit.ldift..
    weblogic.security.service.SecurityServiceException: com.bea.common.engine.Servic
    eInitializationException: weblogic.security.spi.ProviderInitializationException:
    A failure occurred attempting to load LDIF for provider Authorizer from file D:
    \app\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\XACMLAuthorizerInit.ldift.
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.in
    itializeRealm(CommonSecurityServiceManagerDelegateImpl.java:465)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.lo
    adRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.in
    itializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.in
    itialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:875)
    Truncated. see log file for complete stacktrace
    Caused By: com.bea.common.engine.ServiceInitializationException: weblogic.securi
    ty.spi.ProviderInitializationException: A failure occurred attempting to load LD
    IF for provider Authorizer from file D:\app\Oracle\MIDDLE~1\WLSERV~1.3\server\li
    b\XACMLAuthorizerInit.ldift.
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(S
    erviceEngineImpl.java:365)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(S
    erviceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(Servic
    eEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.j
    ava:72)
    at weblogic.security.service.CSSWLSDelegateImpl.getService(CSSWLSDelegat
    eImpl.java:156)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.security.spi.ProviderInitializationException: A failure occu
    rred attempting to load LDIF for provider Authorizer from file D:\app\Oracle\MID
    DLE~1\WLSERV~1.3\server\lib\XACMLAuthorizerInit.ldift.
    at com.bea.common.store.bootstrap.BootStrapServiceImpl.loadFullLDIFTempl
    ate(BootStrapServiceImpl.java:900)
    at com.bea.common.store.bootstrap.BootStrapServiceImpl.loadLDIFTemplate(
    BootStrapServiceImpl.java:678)
    at com.bea.common.store.bootstrap.BootStrapServiceImpl.loadLDIFXACMLAuth
    orizerTemplate(BootStrapServiceImpl.java:173)
    at com.bea.common.store.bootstrap.BootStrapServiceImpl.loadLDIFXACMLAuth
    orizerTemplate(BootStrapServiceImpl.java:157)
    at com.bea.common.security.internal.service.BootStrapServiceImpl.loadLDI
    FXACMLAuthorizerTemplate(BootStrapServiceImpl.java:106)
    Truncated. see log file for complete stacktrace
    Caused By: <openjpa-1.1.1-SNAPSHOT-r422266:807362 fatal store error> kodo.jdo.Fa
    talDataStoreException: The transaction has been rolled back. See the nested exc
    eptions for details on the errors that occurred.
    at org.apache.openjpa.kernel.BrokerImpl.newFlushException(BrokerImpl.jav
    a:2170)
    at org.apache.openjpa.kernel.BrokerImpl.flush(BrokerImpl.java:2017)
    at org.apache.openjpa.kernel.BrokerImpl.flushSafe(BrokerImpl.java:1915)
    at org.apache.openjpa.kernel.BrokerImpl.beforeCompletion(BrokerImpl.java
    :1833)
    at org.apache.openjpa.kernel.LocalManagedRuntime.commit(LocalManagedRunt
    ime.java:81)
    Truncated. see log file for complete stacktrace
    Caused By: <openjpa-1.1.1-SNAPSHOT-r422266:807362 nonfatal store error> kodo.jdo
    .DataStoreException: ORA-00942: table or view does not exist
    {prepstmnt 25551189 INSERT INTO BEAXACMLAP (DOMN, REALMN, TYPEN, CN, XVER, CTS,
    WCN, WCI, WXF, XD, XS, MTS) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [params
    =(String) domain1, (String) myrealm, (String) Policies, (String) urn:bea:xacml:2
    .0:entitlement:resource:type@E@Fjndi@G@M@Oapplication..., (String) 1.0, (null) n
    ull, (null) null, (null) null, (Blob) oracle.sql.BLOB@18ed284, (InputStream) jav
    a.io.ByteArrayInputStream@19eef79, (String) 3, (Timestamp) 2010-10-13 10:53:55.7
    15] [reused=0]} [code=942, state=42000]
    FailedObject: [email protected]a
    3
    at org.apache.openjpa.jdbc.sql.DBDictionary.narrow(DBDictionary.java:420
    7)
    at org.apache.openjpa.jdbc.sql.DBDictionary.newStoreException(DBDictiona
    ry.java:4171)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java
    :102)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java
    :72)
    at kodo.jdbc.kernel.BatchingPreparedStatementManager.flushInternal(Batch
    ingPreparedStatementManager.java:214)
    Truncated. see log file for complete stacktrace
    Caused By: org.apache.openjpa.lib.jdbc.ReportingSQLException: ORA-00942: table o
    r view does not exist
    {prepstmnt 25551189 INSERT INTO BEAXACMLAP (DOMN, REALMN, TYPEN, CN, XVER, CTS,
    WCN, WCI, WXF, XD, XS, MTS) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [params
    =(String) domain1, (String) myrealm, (String) Policies, (String) urn:bea:xacml:2
    .0:entitlement:resource:type@E@Fjndi@G@M@Oapplication..., (String) 1.0, (null) n
    ull, (null) null, (null) null, (Blob) oracle.sql.BLOB@18ed284, (InputStream) jav
    a.io.ByteArrayInputStream@19eef79, (String) 3, (Timestamp) 2010-10-13 10:53:55.7
    15] [reused=0]} [code=942, state=42000]
    at org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.wrap(LoggingCo
    nnectionDecorator.java:192)
    at org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator.access$700(Log
    gingConnectionDecorator.java:57)
    at org.apache.openjpa.lib.jdbc.LoggingConnectionDecorator$LoggingConnect
    ion$LoggingPreparedStatement.executeUpdate(LoggingConnectionDecorator.java:866)
    at org.apache.openjpa.lib.jdbc.DelegatingPreparedStatement.executeUpdate
    (DelegatingPreparedStatement.java:269)
    at org.apache.openjpa.jdbc.kernel.JDBCStoreManager$CancelPreparedStateme
    nt.executeUpdate(JDBCStoreManager.java:1398)
    Truncated. see log file for complete stacktrace
    >
    <Oct 13, 2010 10:53:55 AM IST> <Notice> <Security> <BEA-090082> <Security initia
    lizing using security realm myrealm.>
    <Oct 13, 2010 10:53:55 AM IST> <Critical> <WebLogicServer> <BEA-000362> <Server
    failed. Reason:
    There are 1 nested errors:
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090399]Secu
    rity Services Unavailable
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.do
    BootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:916)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.in
    itialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    <Oct 13, 2010 10:53:55 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to FAILED>
    <Oct 13, 2010 10:53:55 AM IST> <Error> <WebLogicServer> <BEA-000383> <A critical
    service failed. The server will shut itself down>
    <Oct 13, 2010 10:53:55 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to FORCE_SHUTTING_DOWN>

    Oracle WebLogic Server 11g uses a built in production quality (limited in capacity) LDAP server to store user authorization information such as roles, credentials etc. You can also use an external RDBMS instead of the built in LDAP server. Using the RDBMS security store is highly recommended by Oracle in some situations, especially in a cluster environment (for using SAML 2.0 services).
    If you choose to use the RDBMS Security Store, you can configure the security store either through the Configuration Wizard or through WLST at the command line.
    The problem arises because the underlying database has not been configured (or not configured correctly). If you're going to use the RDMBS security store (instead of the default LDAP server), please do the following:
    1. First, make sure you test the database connection on the Configuration Wizard page (Look at the right hand top corner for the button that tests the connection).
    2. Create necessary RDBMS tables in the Security Datastore. I understand others in this thread have suggested this option. However, I want to emphasize that you must log in as the same user you've used as the user name to test your RDBMS connection (I used system as the user name) in Step 1 and run the following script:
    $ @WL_HOME\server\lib\rdbms_security_store_oracle.sql (I'm using Oracle as an example - there are similar scripts for DB2, MS SQL Server).
    The script will create about 30 or so tables. You can log out of the DB at this point.
    3. Start up the Admin Server. It should start correctly now.
    Hope this helps!
    Thanks! Sam
    sam alapati
    [email protected]
    Edited by: user10463043 on Nov 9, 2010 4:38 PM
    Edited by: user10463043 on Nov 9, 2010 4:39 PM
    Edited by: user10463043 on Nov 9, 2010 4:40 PM

Maybe you are looking for

  • How can i install garage band in my iPad with ios4

    Ios4 seems to work beter with Io Dock alesis than ios5 i have a ios4 iPad 2. But the gband donwload reagires iOS 5!! How can i solve this

  • I can't copy photos to my iPhone!!!

    I have a serious problem, i want to copy photos dragging them from my pc pictures folder to my iphone in my explorer and i can't do it anymore!!! i could do it two days ago and now i can't please help me! i restarted the iphone i the problem is still

  • How do I remove the file ID from the file name of an an uploaded File?

    Hello, Im uploading/downloading files in my application (apex 4.0), and it working great, however, the filename that appears has the file id I believe attached to it, ex: F1903848613/my_test_file.txt Im figuring I need to use some kind of combination

  • Open URL or File Action not working (Captivate 7)

    I have written dozens of training courses using Captivate that employ buttons to open PDF documents (supporting documentation). I am currently coding smart shapes as buttons, specifying the Open URL or File action, or by executing an advanced action

  • Process ABAP query program

    Hi 1:When I change a program which was created by an Query, I got this information:"The object is in a namespace that is reserved for generated objects. Flag object as generated? "can I press Yes? 2. where to find the development class for an existin