指引网

当前位置: 主页 > 服务器 > Nginx >

执行crontab -e报错-bash: crontab: command not found

来源:网络 作者:佚名 点击: 时间:2017-08-02 23:31
[摘要] 执行crontab -e报错-bash: crontab: command not found解决办法如下:操作步骤1.确认crontab是否安装:执行crontab命令如果报commandn...
执行crontab -e报错-bash: crontab: command not found


解决办法如下:

操作步骤

1. 确认crontab是否安装:

执行 crontab 命令如果报 command not found,就表明没有安装

2. 安装 crontab

执行 yum install -y vixie-cron

3. 确认是否安装成功:

执行 crontab -l

4. 看是否设置了开机自动启动

chkconfig --list crond

5. 启动crontab

service crond start
------分隔线----------------------------