当前位置: > Linux教程 >

linux 开机自动运行普通用户

时间:2014-07-11 19:44来源:linux.it.net.cn 作者:it
 
  1. 问题分析:  
  2.       通过分析开机启动的JAVA进程和手动启动的JAVA进程,发现tty是不同的,接着再去google sudo和tty的关系,发现sudo默认是需要tty的,系统开机启动,没有tty,而我们通过ssh客户端登录服务器,杀掉tomcat,再重新启动tomcat,这时候可以获得tty为pts,因此可以使用sudo命令  
  3. 解决方法:  
  4. 通过修改/etc/sudoers文件,将  
  5.      Defaults requiretty  
  6. 注释掉即可  

 

我用的centos,查看,该行本来就是注释的,还是未能自动运行

 

 

  1. 需要开机执行的sudo命令可以写在/etc/rc.local中,因为/etc/rc.local是以root身份去执行的。  
  2. 系统在启动时会先调用/etc/init.d/rc.local,在/etc/init.d/rc.local脚本中再调用/etc/rc.local  
  3. /etc/init.d/rc.local中调用/etc/rc.local的部分如下:  
  4. if [ -x /etc/rc.local ]; then  
  5.  [ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)"  
  6.  /etc/rc.local  
  7.  ES=$?  
  8.  [ "$VERBOSE" != no ] && log_end_msg $ES  
  9.  return $ES  
  10. fi  
  11. 可见,首先要必须先保证/etc/rc.local对root具有可执行权限,这点也是让我困惑了很久~~  
  12. 通过sudo chmod u+x /etc/rc.local后,即可往/etc/rc.local中添加sudo命令实现开机自动执行了^_^  

照做,依旧不能自动运行

 

 

  1. su - test1 -c "python /home/test1/test.py"    

 

解决问题,加上 su和 test1 重甲的”-“

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容