美文网首页
Linux定时脚本

Linux定时脚本

作者: 风的低语 | 来源:发表于2019-06-29 10:45 被阅读0次

    切换到相应目录

    cd /home/pgbackups/
    

    创建脚本文件

    touch pgbackups.sh
    

    编辑自动化脚本

    #! /bin/bash
    /home/postgres/pgsql/bin/pg_dump -h 10.8.87.7 -p 5478 -U postgres --column-inserts wechart > /home/pgbackups/wechartdb`date +%Y%m%d`.sql
    

    #! /bin/bash
    /home/postgres/pgsql/bin/pg_dump -h localhost -p 5478 -U postgres -Fc -d ubx_sx_yl_bz_jl -T "public.eparking_identification" > "/mnt/data/zipData/ubx_sx_yl_bz_jl.dmp"
    

    打开自动化脚本编辑

    crontab -e
    

    编辑自动运行(每天5点半执行)

    30 5 * * * /home/data/pgbackups.sh > /home/data/logs 
    

    相关文章

      网友评论

          本文标题:Linux定时脚本

          本文链接:https://www.haomeiwen.com/subject/kfdhcctx.html