Sometimes we might have requirement to kill the BI server from the command line in Unix.
Enter the below command:
$ ps -ef | grep nqsserver*
You might find a line similar to this in the results.
obieeadm 22763 1 0 09:29:03 pts/2 1:29 /app/oracle/product/obiee/server/Bin64/nqsserver -quiet
Enter the below command:
$ ps -ef | grep nqsserver*
You might find a line similar to this in the results.
obieeadm 22763 1 0 09:29:03 pts/2 1:29 /app/oracle/product/obiee/server/Bin64/nqsserver -quiet
The Process ID is highlighted above. This can be used to kill the process.
$ Kill -9 22763
Normally its not advisable to kill the server in this method. Please do this only if required.
No comments:
Post a Comment