linux crontab yum安装

crontab工具来做计划任务,定时任务,执行某个脚本等等

1.检查是否已安装crontab    

# crontab

-bash: crontab: command not found

  

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

2.yum安装    

  

 # yum -y install vixie-cron
Loaded plugins: security
base | 3.7 kB :
epel | 4.7 kB :
epel/primary_db | 6.0 MB :
extras | 3.4 kB :
extras/primary_db | kB :
updates | 3.4 kB :
updates/primary_db | 5.3 MB :
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package cronie.x86_64 :1.4.-.el6_8. will be installed
--> Processing Dependency: dailyjobs for package: cronie-1.4.-.el6_8..x86_64
--> Processing Dependency: /usr/sbin/sendmail for package: cronie-1.4.-.el6_8..x86_64
--> Running transaction check
---> Package cronie-anacron.x86_64 :1.4.-.el6_8. will be installed
--> Processing Dependency: crontabs for package: cronie-anacron-1.4.-.el6_8..x86_64
---> Package exim.x86_64 :4.89-.el6 will be installed
--> Running transaction check
---> Package crontabs.noarch :1.10-.el6 will be installed
--> Finished Dependency Resolution Dependencies Resolved ===============================================================================================================================================================================================
Package Arch Version Repository Size
===============================================================================================================================================================================================
Installing:
cronie x86_64 1.4.-.el6_8. base k
Installing for dependencies:
cronie-anacron x86_64 1.4.-.el6_8. base k
crontabs noarch 1.10-.el6 base k
exim x86_64 4.89-.el6 epel 1.4 M Transaction Summary
===============================================================================================================================================================================================
Install Package(s) Total download size: 1.5 M
Installed size: 4.3 M
Downloading Packages:
(/): cronie-1.4.-.el6_8..x86_64.rpm | kB :
(/): cronie-anacron-1.4.-.el6_8..x86_64.rpm | kB :
(/): crontabs-1.10-.el6.noarch.rpm | kB :
(/): exim-4.89-.el6.x86_64.rpm | 1.4 MB :
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total MB/s | 1.5 MB :
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : exim-4.89-.el6.x86_64 /
Installing : cronie-1.4.-.el6_8..x86_64 /
Installing : crontabs-1.10-.el6.noarch /
Installing : cronie-anacron-1.4.-.el6_8..x86_64 /
Verifying : crontabs-1.10-.el6.noarch /
Verifying : cronie-anacron-1.4.-.el6_8..x86_64 /
Verifying : exim-4.89-.el6.x86_64 /
Verifying : cronie-1.4.-.el6_8..x86_64 / Installed:
cronie.x86_64 :1.4.-.el6_8. Dependency Installed:
cronie-anacron.x86_64 :1.4.-.el6_8. crontabs.noarch :1.10-.el6 exim.x86_64 :4.89-.el6 Complete!

安装完成后,可使用 info crontab 命令查看详细的帮助信息

cron服务提供crontab命令来设定cron服务的,以下是这个命令的一些参数与说明:

  crontab -u //设定某个用户的cron服务,一般root用户在执行这个命令的时候需要此参数

  crontab -l //列出某个用户cron服务的详细内容

  crontab -r //删除没个用户的cron服务

  crontab -e //编辑某个用户的cron服务

  比如说root查看自己的cron设置:crontab -u root -l

  再例如,root想删除fred的cron设置:crontab -u fred -r

  在编辑cron服务时,编辑的内容有一些格式和约定,输入:crontab -u root -e

crontab服务状态操作

  /sbin/service crond start //启动服务 
  /sbin/service crond stop //关闭服务 
  /sbin/service crond restart //重启服务 
  /sbin/service crond reload //重新载入配置 
  /sbin/service crond status //查看状态

或者使用

  # service crond start 
  # service crond stop 
  # service crond restart 
  # service crond reload 
  # service crond status

添加到开机服务

  在/etc/rc.d/rc.local这个脚本的末尾加上:

    /sbin/service crond start

上一篇:基于react hooks,zarm组件库配置开发h5表单页面


下一篇:jquery基础知识汇总