Tuesday, December 23, 2014

How to start EMS server from Command Prompt


We can start the EMS Server from command prompt as follows :

In Windows
Open the command prompt and navigate to <EMS_HOME>/bin folder and execute the tibemsd executable by passing tibemsd.conf file location.

tibemsd -config C:\ProgramData\TIBCO_HOME\tibco\cfgmgmt\ems\data\tibemsd.conf

In UNIX
Open the terminal and navigate to <EMS_HOME>/bin folder and execute the tibemsd executable by passing tibemsd.conf file location.

$ tibemsd -config home/tibco/cfgmgmt/ems/data/tibemsd.conf

and in unix nohup is used to write output that would normally go to terminal to a file(nohup.out) and & is used to run a process in background.We can use below command to start the EMS server in background and to write the terminal ouput to nohup.out file.

$ nohup tibemsd -config home/tibco/cfgmgmt/ems/data/tibemsd.conf &



No comments:

Post a Comment

back to top