On occasion there may be issues during FAS startup, this article is meant as a reference for the most common.
FAS Processes Already Running
Before you attempt to start FAS you should ensure FAS processes are not already running, this can be done with one of the following commands in the terminal window:
ps -aef | grep java
The output returned if FAS is not running should look something like the following:
If you see FAS processes returned from this command, and you have already attempted to stop FAS using the service command, you can end the FAS processes either by:
- Noting the Process Controller process ID and inputting it into the following command:
kill -9 <PID> - Entering the following command
kill -9 `ps -ef | grep '[P]rocess Controller' | awk '{print $2}'`
You should now be able to start FAS using the service command without a problem.
Comments
0 comments
Please sign in to leave a comment.