How to create add Oracle Weblogic's NodeManager as a service to xinetd?

Posted by Neuquino on Super User See other posts from Super User or by Neuquino
Published on 2010-03-18T15:57:49Z Indexed on 2010/03/18 16:01 UTC
Read the original article Hit count: 703

Filed under:
|
|
|

I'm trying to add NodeManager to start automatically when system boots
In Oracle® Fusion Middleware Node Manager Administrator's Guide there is this template:

# default: off
# description:nodemanager as a service
service nodemgrsvc
{
   type            = UNLISTED
   disable         = no
   socket_type     = stream
   protocol        = tcp
   wait            = yes
   user            = <username>
   port            = 5556
   flags           = NOLIBWRAP
   log_on_success += DURATION HOST USERID
   server          = <path-to-jave>/java
   env             = CLASSPATH=<cp> LD_LIBRARY_PATH=<ldpath>
   server_args     = -client -DNodeManagerHome=<NMHome> <java options> 
   <nodemanager options> weblogic.NodeManager -v
}  

I don't know how to fill:

  • cp
  • ldpath
  • java_options
  • nodemanager options

Do you have any xinetd script example to start nodemanager?

Thanks in advance.

© Super User or respective owner

Related posts about startup

Related posts about boot