Tmadmin is a command line utility which incorporates with Tuxedo installed in environment. With tmadmin command line we can start and stop the services with out effecting other services.

To check Tuxedo version run below command

tmadmin -v

With tmadmin(Tuxedo command line) we can start andstop specific process running on PeopleSoft Application server and Process Scheduler Server.

There are two ways to perform, ie one is with group name and second is with id.You can find group name and id with domain status menu either in application server or process scheduler server.

If you want to start only PUBSUB(Integration broker services) process, now you can use with group name as shown below command from tuxedo command line.

>PSADMIN

—> 1) Application Server

–>1) Administer a domain

–>1) ABCD  (” Choose the domain that you are going to start PUBSUB”)

–>5) TUXEDO command line (tmadmin)

–> boot -g PUBSUB

If you want to bring down then use “shutdown -g PUBSUB”

If you want to start AESRV process use ” boot -g AESRV”

If you want to stop AESRV process use “shutdown -g AESRV

Note: The letter “-g” refers group name from domain status, If you want to bounce with ID then use “-i” instead of “-g” in above all commands.

Example: Stopping process with ID is shown in below command

shutdown -i 103

In my scenario ID “103” refers to   process “PSDSTSRV” , you can find the ID and corresponding Process in domain status menu option .

Note:If you select with group name then, it only effects specific group. Where as in ID it is different, one single id might represents multiple types of process.