We are use ubuntu 10.04 + servoy app server 6 witn no problem
Now we are moving to ubuntu 12.04 + app server 6 (clean instalation)
Firts to all, I have to say, that we installed JAVA SUN JDK 7 correctly (we know that “open java” it’s not valid)
We test it with java -version and it’s OK
If we use the java’s webpage for test our java instalation it’s says that java sun 7 SE has been installed correctly (java version 7 update 5)
Then we install servoy server succesfully, but then when we lauch it with sh /servoy_path/servoy_server.sh nothing happens (no java console text it’s shown, it seemd that the sh won’t run the java commands
and localhost:8080 or telnet to 8080 doesn’t respond either
Please have a look on your running services/processes!
ps -ax
show you a list of the currently running services/processes on the server.
As I can see on your screenshot the servoy server ist running several times ([6] 2232, [7] 2238 and so on are the service/process id’s)! You can stop the services/processes by
kill 2232 2238...
but I think it would be better to restart the server
sudo shutdown -r now
and try to start the servoy server as I described again.
.- reboot the server OK
.- change directory to application_server OK
.- run the sh with ./servoy_server.sh & OK
.- the output to this last command was
[1] 1554
This looks good! The servoy server instance is running with the PID 1554.
Now you should able to open the servoy-admin by: http://ip_of_the_server:8080/servoy-admin. If this won’t work, shut down the servoy server by:
“kill 1554”
and start again by:
“./servoy_server -upgradeRepository”.
I hope this are the correct commands because this is just out from head.