Starting/Stopping EnterpriseOne JAS servers manually

ShawnLane

Member
Hi,

I would like to know if is possible to start/stop manually (from Linux command line) the EnterpriseOne JAS servers.
Actually, I user Server Manager using the Start/Stop buttons.
I would like to script it but I don't know the command line used by Server Manager.

Conf. :
TR 9.1.4.4
JDE 9.0
Linux Redhat

Can someone help?

Regards,
 
Yes, it's possible. Both WebLogic and WebSphere provide a command line interfaceto manage the server.
 
Thanks for the blog link, that could be useful.
I have no especially problem with weblogic start / stop.
What I want to script is the Start / Stop of the JAS servers (see screenshot of Server Manager).
 

Attachments

  • Start-Stop JAS.png
    Start-Stop JAS.png
    5.6 KB · Views: 21
su -l oracle $DOMAIN_HOME/bin/startManagedWebLogic.sh PD910 http://WEBJDE:7001 &> /home/oracle/logs/PD910_start.log &

where WEBJDE is the hostanme
7001 the was admin port
PD910 the jas instance to start
 
we have created windows service to enable us to stop/start

Service runs as C:\WebSphere61\IHS\bin\apache.exe" -k runservice
 
Back
Top