• Linux启动重启和停止Cron Crond服务


    Linux Start Restart and Stop The Cron or Crond Service

    See all GNU/Linux related FAQHow do I start, restart and stop the cron service under a Linux / BSD / UNIX-like operating systems using command prompt

    The Cron (crond) daemon or service is use to execute scheduled commands or scripts. cron wakes up every minute, examining all stored crontabs, checking each command to see if it should be run in the current minute.

    Linux Start Restart and Stop The Cron or Crond Service

    Tutorial details
    Difficulty level Easy
    Root privileges Yes
    Requirements Linux
    Est. reading time 2 mintues
    ADVERTISEMENT

    Commands for RHEL/Fedora/CentOS/Scientific/Rocky/Alma Linux user
    If you are using Redhat (RHEL)/Fedora/CentOS/Rocky/Alma Linux use the following commands.

    Task: Start cron service
    To start the cron service, use:

    /etc/init.d/crond start
    
    • 1

    OR RHEL/CentOS 5.x/6.x user:

    service crond start
    
    • 1

    OR RHEL/Centos Linux 7.x user:

    systemctl start crond.service
    
    • 1

    Task: Stop cron service
    To stop the cron service, use:

    /etc/init.d/crond stop
    
    • 1

    OR RHEL/CentOS 5.x/6.x user:

    service crond stop
    
    • 1

    OR RHEL/Centos Linux 7.x user:

    systemctl stop crond.service
    
    • 1

    Task: Restart cron service
    To restart the cron service, use:

    /etc/init.d/crond restart
    
    • 1

    OR RHEL/CentOS 5.x/6.x user:

    service crond restart
    
    • 1

    OR RHEL/Centos Linux 7.x user:

    systemctl restart crond.service
    
    • 1

    Commands for Ubuntu/Mint/Debian based Linux distro
    If you are using Debian or Ubuntu or Mint Linux the following commands.

    Task: Debian Start cron service
    To start the cron service, use:

    /etc/init.d/cron start
    
    • 1

    OR

    sudo /etc/init.d/cron start
    
    • 1

    OR

    sudo service cron start
    
    • 1

    Task: Debian Stop cron service
    To stop the cron service, use:

    /etc/init.d/cron stop
    
    • 1

    OR

    $ sudo /etc/init.d/cron stop
    
    • 1

    OR

    $ sudo service cron stop
    
    • 1

    Task: Debian Restart cron service
    To restart the cron service, use:

    /etc/init.d/cron restart
    
    • 1

    OR

    $ sudo /etc/init.d/cron restart
    
    • 1

    OR

    $ sudo service cron restart
    
    • 1

    Patreon supporters only guides ??
    No ads and tracking
    In-depth guides for developers and sysadmins at Opensourceflare
    Join my Patreon to support independent content creators and start reading latest guides:
    How to set up Redis sentinel cluster on Ubuntu or Debian Linux
    How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
    How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
    A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
    How to protect Linux against rogue USB devices using USBGuard
    If your domain is not sending email, set these DNS settings to avoid spoofing and phishing
    Join Patreon
    Task : Start the cron service at boot time
    It is recommended that you start the service at boot time so that job can run w/o problems.

    If you are using Redhat (RHEL)/Fedora Core/Cent OS Linux use the following commands to ensure that the service remains enabled after a reboot:

    chkconfig crond on
    
    • 1

    Redhat (RHEL) Linux8.0:

    systemctl enable crond.service
    
    • 1

    You can use a text based GUI tool called ntsysv to enable crond service:

    ntsysv
    
    • 1

    If you are using Debian or Ubuntu Linux use the following commands to ensure that the service remains enabled after a reboot:

    rcconf
    
    • 1

    OR

    $ sudo rcconf
    
    • 1

    You can use command line tool update-rc.d:

    update-rc.d cron defaults
    
    • 1

    OR

    $ sudo update-rc.d cron defaults
    
    • 1

    A note about Apline Linux user
    Use anyone of the following command on Alpine Linux to restart crond service:

    /etc/init.d/crond restart
    ## OR ##
    service crond restart
    
    • 1
    • 2
    • 3

    转载于:https://www.cyberciti.biz/faq/howto-linux-unix-start-restart-cron/

  • 相关阅读:
    2023 牛客国庆day4 【10.2训练补题】
    python-itheima
    权限提升-Linux脏牛内核漏洞&SUID&信息收集
    数据结构基础内容-----第三章 线性表
    TWDS车辆轮对故障、尺寸动态检测系统
    javafx开发环境踩坑记录
    大一学生网页课程作业 南京介绍网页设计 学生家乡网页设计作品静态 HTML网页模板源码 html我的家乡网页作业
    HIS系统源码,云HIS源码,二级医院信息管理系统源码,预约挂号支持、病患问诊、电子病历、开药发药、会员管理、统计查询、医生工作站、护士工作站
    一文读懂工业以太网设备的发展史
    Excel 的单元格内容和单元格格式
  • 原文地址:https://blog.csdn.net/m0_54850825/article/details/126582964