首页 > 系统相关 >Centos7 linux定时任务

Centos7 linux定时任务

时间:2023-06-17 18:37:22浏览次数:62  
标签:auto xxx update cd Centos7 sh && linux 定时

1、参考

CentOS 7 定时任务 crontab 入门

Centos 利用crontab定时执行任务及配置方法

2、

crontab -l #查看当前用户定时任务
crontab -e #编辑当前用户定时任务

# prod backup database
0 2 * * *  cd /data/xxx && /usr/bin/sh xxx_backup.sh

# prod auto update manage code
# * * * * *  cd /data/xxx/      && source /etc/profile && /usr/bin/sh xxx_auto_update_manage.sh
# temp auto update manage code
# * * * * *  cd /data/xxx_temp/ && source /etc/profile && /usr/bin/sh xxx_auto_update_manage.sh
# temp auto update spring service
# * * * * *  cd /data/xxx_temp/ && source /etc/profile && /usr/bin/sh xxx_auto_update.sh
# y4_xxx auto update
# * * * * *           cd /data/y4_xxx/ && source /etc/profile && /usr/bin/sh au-auto-update.sh
# * * * * * sleep 10; cd /data/y4_xxx/ && source /etc/profile && /usr/bin/sh au-auto-update.sh
# * * * * * sleep 20; cd /data/y4_xxx/ && source /etc/profile && /usr/bin/sh au-auto-update.sh
# * * * * * sleep 30; cd /data/y4_xxx/ && source /etc/profile && /usr/bin/sh au-auto-update.sh
# * * * * * sleep 40; cd /data/y4_xxx/ && source /etc/profile && /usr/bin/sh au-auto-update.sh
# * * * * * sleep 50; cd /data/y4_xxx/ && source /etc/profile && /usr/bin/sh au-auto-update.sh

# prod xxx_new backup database
0 2 * * *  cd /data/xxx_new && /usr/bin/sh db_backup_xxx_new.sh

标签:auto,xxx,update,cd,Centos7,sh,&&,linux,定时
From: https://www.cnblogs.com/kikyoqiang/p/17488022.html

相关文章

  • linux挂载新磁盘
    linux挂载新磁盘1.老系统查看1.1查看磁盘挂载情况#df-hFilesystemSizeUsedAvailUse%Mountedonudev3.8G03.8G0%/devtmpfs770M1.3M769M1%/run/dev/vda159G48G9.0G85%/tmpfs3.8G03.8G0%/dev/shmtmpfs5.0M05.0M0%/run/locktmpfs3.8G0......
  • Linux操作系统——主观题
    第一章——虚拟机UbuntuLinux'在安装系统时,应该建立几个分区?每个分区的大小大致是多少?建立四个分区,第一个主分区/dev/sad1512MB,第二个逻辑分区/dev/sda510240MB,第三个交换分区/dev/sda61024MB,第四个个人文件分区/dev/sda79696MB。在一台主机上只能安装一个VMware虚拟机软......
  • Linux下常用命令
    scp用于上传,下载,两台服务器文件复制上传文件到服务器:scpusername@servername:/path/filename/tmp/local_destination从服务器上下载文件到本地:scp/path/local_filenameusername@servername:/path从服务器上下载整个目录到本地:scp-rusername@servername:remote_dir/......
  • Study mission - Linux related
    学习任务:Linuxrelated1.linux文件系统结构,各个常用系统目录的含义/binbin是Binaries(二进制文件)的缩写,这个目录存放着最经常使用的命令。/boot这里存放的是启动Linux时使用的一些核心文件,包括一些连接文件以及镜像文件。/devdev是Device(设备)的缩写,......
  • 06. centos7使用docker方式安装gitlab
    gitlab初体验,使用docker进行快速安装,遇到了端口修改不生效的问题,在此记录一下。在正式环境中,gitlab的容器版,应该使用postgresql,redis,gitlab三个组件,使用标准的80端口,提供稳定且有性能的企业服务。但如果是在测试环境,或是想在一个机器上运行多个服务,则gitlab不一定能......
  • linux环境安装docker
    卸载Dockeryumremovedocker\docker-client\docker-client-latest\docker-common\docker-latest\docker-latest-logrotate\docker-logrotate......
  • 05. centos7安装git服务
    1、安装编译git时需要的包yuminstall-ycurl-develexpat-develgettext-developenssl-develzlib-develyuminstall-ygccperl-ExtUtils-MakeMaker2、删除已有的gityumremovegit3、Git官网下载Git最新版tar包,地址wget安装:yuminstallwget-ycd/hom......
  • CentOS7.9离线部署Kubernetes 1.27.2
    1、节点介绍 ,最小化安装CentOS7.91HostNamevm8649vm8648vm86472IP10.17.86.4910.17.86.4810.17.86.472、配置网络,关闭防火墙,关闭selinux3、安装必备的软件1yuminstallvimgccwgetlrzszbash-completiongperf......
  • Deepin Linux如何安装Terminus终端
    Terminus是一款基于web技术的终端,支持windows、Linux、MacOS系统。可以为终端定制主题和各种配色方案。环境Deepin15.11安装TerminusTerminus的github仓库:https://github.com/Eugeny/terminus/releases官网提供了下载地址(https://www.termius.com/),它的下载速度比github快很多但是......
  • 【技术积累】Linux中的基础知识【二】
    Linux的发行版本Linux是一个开源操作系统,有许多发行版,每个发行版都有自己的特点和优势。以下是一些常见的Linux发行版:Ubuntu:Ubuntu是最受欢迎的Linux发行版之一,它拥有一个庞大的社区,提供了易于使用的界面和大量的软件。Debian:Debian是最古老的Linux发行版......