Reputation: 113
I installed wso2 on linux server. When I want to run the application with the sh wso2server.sh
command in the bin file, "Killed" appears on the console screen and the application does not work. I also tried with the sh wso2server start
command. It still didn't work. There is no error when I look at the log files. What is the reason for this and how can I solve it?
Upvotes: 1
Views: 597
Reputation: 14574
It seems the Operating System is Killing your process. One reason for this is you do not have enough memory in the VM to start the Java process. So first check whether you have allocated enough memory to this VM?
If that's not the case, you should be able to find more information from the Kernal logs to determine why the process was killed. Typically located at /var/log/kern.log
or /var/log/dmesg
.
Have a look at this question as well.
Upvotes: 1