Dear visitor, welcome to Palo Community Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
This post has been edited 1 times, last edit by "phabion" (Sep 10th 2011, 5:36pm)
try this URL: http://www.asconix.com/howtos/debian/palo-suite-debian-howto
esp. the Sun JDK might be worth a try

This post has been edited 1 times, last edit by "phabion" (Sep 12th 2011, 7:21pm)
Quoted
Starting & stopping the Palo Suite
After we have described above the following Palo suite on our Debian GNU / Linux 6.0 "squeeze" system installed, we can provide the entire application using the script / opt / Jedox / ps / startserver.sh start. In this script, but the start of the application server Tomcat, which is required by the Palo Suite, commented out. We therefore take the first to start Tomcat in this script:
![]()
Source code
1 2 3 4 5 6 7 8 9 #!/ Bin / bash ulimit-S-c unlimited chroot. . / Usr / bin / palo>> / dev / null & Sleep 8 chroot. ./usr/local/apache2/bin/httpd sleep 2 . / Tomcat / bin / startup.sh sleep 2 chroot. ./core-Linux-i386/run.sh>> / dev / null 2> & 1
Note: may claim the start of the application server Tomcat more time than expected, so it starts the Palo-core too early. Hence in these cases should be increased, the waiting time after the start of Tomcat in the above script. Since such a setup is launched rarely, it is advisable at this point correspond to high value to select at this point (eg 120 seconds).
Likewise, we must include the stopping of Tomcat in the appropriate script to shutdown the service. This we fit under / opt / Jedox / ps / stopserver.sh to:
![]()
Source code
1 2 3 4 5 # !/ Bin / bash killall ./usr/local/apache2/bin/httpd killall core.bin killall-s INT. / usr / bin / palo . / Tomcat / bin / shutdown.sh
This post has been edited 1 times, last edit by "phabion" (Sep 13th 2011, 10:27am)
(please visit my new post http://www.jedox.com/community/palo-foru…13751#post13751)This post has been edited 1 times, last edit by "phabion" (Sep 13th 2011, 7:02pm)