http://blog.youkuaiyun.com/hbcui1984/article/details/4531220 中
问题分析:
通过分析开机启动的JAVA进程和手动启动的JAVA进程,发现tty是不同的,接着再去google sudo和tty的关系,发现sudo默认是需要tty的,系统开机启动,没有tty,而我们通过ssh客户端登录服务器,杀掉tomcat,再重新启动tomcat,这时候可以获得tty为pts,因此可以使用sudo命令
解决方法:
通过修改/etc/sudoers文件,将
Defaults requiretty
注释掉即可
我用的centos,查看,该行本来就是注释的,还是未能自动运行
http://blog.youkuaiyun.com/onlyou930/article/details/6702473
需要开机执行的sudo命令可以写在/etc/rc.local中,因为/etc/rc.local是以root身份去执行的。
系统在启动时会先调用/etc/init.d/rc.local,在/etc/init.d/rc.local脚本中再调用/etc/rc.local
/etc/init.d/rc.local中调用/etc/rc.local的部分如下:
if [ -x /etc/rc.local ]; then
[ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)"
/etc/rc.local
ES=$?
[ "$VERBOSE" != no ] && log_end_msg $ES
return $ES
fi
可见,首先要必须先保证/etc/rc.local对root具有可执行权限,这点也是让我困惑了很久~~
通过sudo chmod u+x /etc/rc.local后,即可往/etc/rc.local中添加sudo命令实现开机自动执行了^_^
照做,依旧不能自动运行
http://blog.youkuaiyun.com/sinboy/article/details/2466225
su - test1 -c "python /home/test1/test.py"
解决问题,加上 su和 test1 重甲的”-“