>How can I start tomcat as nobody/nobody? >Does it exist a script? >What must I modify?
I assume you are talking linux? For my setup, I created an extra tomcat user (account /home/tomcat) and installed tomcat there. In the bootup script /etc/init.d/boot.local you can put a line like -> su -l -c "where/is/tomcat start" tomcat <- or similar, and analog things in the halt script. You must make sure that all logging directories etc. are writable to this user. So it would be best to put them somewhere under /home/tomcat too. You can alternatively make the directory /var/log/tomcat and then a -> chown -R tomcat: /var/log/tomcat <-. Greetings, Carsten -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
