Jboss process not working
Steps:
1. Stop processes
2. Check processes on Linux
3. If still active use kill
and wait
4. If still active use kill -9
5. Try to start the server manually with command:
manage-instance.sh -i instance_name start
6. If failed, restart whole AWS instance via console or by using shutdown -r now
7. Check process
ps -ef | grep java | grep Server:INSTANCE_NAME # there should be a process
To check the logs use:
tail -200f /opt/jboss/jboss-eap-6.0/domain/servers/INSTANCE_NAME/log/drm.log
Last updated