• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Exception While Starting Server

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am getting the following error when I start the weblogic server.

<Aug 2, 2008 7:18:54 PM CST> <Critical> <WebLogicServer> <000364> <Server failed during initialization. Exception:java.lang.SecurityException: Authentication for user admin denied

java.lang.SecurityException: Authentication for user admin denied

at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceManagerDelegateImpl.java:411)

at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDelegateImpl.java:539)

at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:922)

at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:719)

at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:593)

at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:281)

at weblogic.Server.main(Server.java:32)

Can any tell me the root cause ?
 
Ranch Hand
Posts: 977
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

you're trying to start a server with user: admin and the password is wrong. Problably you have a boot.properties file with wronk password under: ${domain_home}/servers/AdminServer/security/boot.properties or maybe you're starting a server and passing the wrong password in command line.

regards.
 
Mike Jeya
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I uninstalled the server and installed again and started the server and it works fine now.

Thank you so much for your reply.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic