Linux 指定用户执行 crontab 计划任务
- A
本教程提供三种方法:
1.直接以需要指定的用户登录(对于没有bash登录权限的用户不可用)
su aswl crontab -e2.以root用户登录,然后创建指定用户的crontab文件
sudo crontab -e -u aswl注:crontab 文件为 aswl 用户创建,不便管理
3.修改系统 crontab 文件,指定用户执行
vi /etc/crontab文件内容初始如下:
SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details see man 4 crontabs # Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed在命令前添加指定的用户名即可
* * * * * aswl command to be executed
傲世》原创,转载请保留文章出处。
本文链接:https://www.recho.cn/175.html
如您对本文章内容有所疑问、反馈或补充,欢迎通过邮箱:[email protected] 联系我们!
版权声明:若无特殊注明,本文为《正文到此结束