Re: Is it right this command?

2020-07-20 Thread Alvaro
...Thanks,Thanks and Thank you, Maxim. ...the more i read the more mistakes i make bywriting... `startup.sh` doesn't support `-u` option the only option is to use `sudo -u .` your error 'Permiso denegado' is caused by incorrect permissions on folder please do

Re: Is it right this command?

2020-07-20 Thread Maxim Solodovnik
On Mon, 20 Jul 2020 at 12:52, Alvaro wrote: > Thanks Maxim, but i mean for tomcat3 script. > > sudo -u nobody $CATALINA_HOME/bin/startup.sh > > ...this command is for running from terminal, but > for tomcat3 script, how? > > Is it right this?: > > $CATALINA_HOME/bin/startup.sh -u nobody > > If i

Re: Is it right this command?

2020-07-19 Thread Alvaro
Thanks Maxim, but i mean for tomcat3 script. sudo -u nobody $CATALINA_HOME/bin/startup.sh ...this command is for running from terminal, butfor tomcat3 script, how? Is it right this?: $CATALINA_HOME/bin/startup.sh -u nobody If i put the first command i get: [root@archi]: /home/guadal>#

Re: Is it right this command?

2020-07-19 Thread Maxim Solodovnik
Hello Alvaro, On Sun, 19 Jul 2020 at 17:00, Alvaro wrote: > Hello Maxim, > > Is it right this cpmmand to run OM as nobody user?: > > $CATALINA_HOME/bin/startup.sh -u nobody > No this will not work this way you need to run ir as `sudo -u nobody $CATALINA_HOME/bin/startup.sh` > > Thanks > > >

Is it right this command?

2020-07-19 Thread Alvaro
Hello Maxim, Is it right this cpmmand to run OM as nobody user?: $CATALINA_HOME/bin/startup.sh -u nobody Thanks