原创LinuxerLinux阅码场2017-11-11Linuxer已经从一个单纯的读者服务公众号转变为一个为广大用户解决linux学习,工作以及职业生涯实际问题的平台。用户参与,才能让这个平台更加实用,有效。Linuxer平台号召各路大虾一起来建设这个平台,“Linuxer”是广大linuxer的“Linuxer”。第4个月稿件录取和赠书名单如下:作者赠送书作品明鑫奔跑吧Linux内核》吴锦华/
分类:
系统相关 时间:
2020-12-04 11:24:41
阅读次数:
9
简介 Cron 是 UNIX、SOLARIS、LINUX 下的一个十分有用的工具,通过 Cron 脚本能使计划任务定期地在系统后台自动运行。这种计划任务在 UNIX、SOLARIS、LINUX下术语为 Cron Jobs。Crontab 则是用来记录在特定时间运行的 Cron 的一个脚本文件,Cro ...
分类:
其他好文 时间:
2020-12-03 12:30:55
阅读次数:
23
1.使用export histtimeformat="%F %T"的形式实现查看命令历史文件中带执行时间的效果。也可以通过在.bash_profile中实现永久保存。 2.linux常见命令的使用格式 以下以shutdown,date,whoami等来举例 shutdown用于关机或重启 参数如下: ...
分类:
系统相关 时间:
2020-12-03 11:59:40
阅读次数:
6
一个系统刚刚构建的时候,往往需要定时执行的任务,但没有,有人就推荐java的timerimportjava.util.Timer;importjava.util.TimerTask;publicclassTimerTestextendsTimerTask{privateStringjobName="";publicTimerTest(StringjobName){super();this.jobN
分类:
系统相关 时间:
2020-12-03 11:55:36
阅读次数:
6
第一步:安装 crontab ,命令 yum -y install vixie-cron 扩展:service crond start //启动服务 service crond stop //关闭服务 service crond restart //重启服务 service crond reload ...
分类:
系统相关 时间:
2020-11-27 11:08:43
阅读次数:
11
1. Centos8 - 『更换rpm/epel包源为国内源』 centos 8 默认是会读取centos.org的mirrorlist的,所以一般来说是不需要配置镜像的。 如果你的网络访问mirrorlist有问题,才需要另外配置 相关镜像配置,请参考各镜像站的相关帮助: rpm 源 -- 阿里云 ...
分类:
系统相关 时间:
2020-11-27 11:03:07
阅读次数:
11
[oracle@monkey01 ~]$ rman target / Recovery Manager: Release 11.2.0.4.0 - Production on Mon Mar 26 13:48:45 2018 Copyright (c) 1982, 2011, Oracle and/ ...
分类:
数据库 时间:
2020-11-21 12:03:07
阅读次数:
9
import osimport smtplibfrom email.mime.text import MIMETextfrom email.header import Headersender = ' 'receiver = 'i 'smtpObj = smtplib.SMTP()smtpObj.c ...
分类:
其他好文 时间:
2020-11-07 16:03:50
阅读次数:
15
-bash-4.1$ crontab -e Authentication token is no longer valid; new one requiredYou (oracle) are not allowed to access to (crontab) because of pam conf ...
分类:
数据库 时间:
2020-10-31 01:45:57
阅读次数:
28
1 MySQL的备份设计 1.1 备份策略的设计 备份周期,可以根据数量来进行选择 备份工具: 可以选择mysql软件自带的命令mysqldump 或者 XBK工具 备份方式: 全备 增量 1.2 检查备份的可用性 crontab -l :检查定时任务中是否有备份的脚本 查看备份日志 1.3 定期的 ...
分类:
数据库 时间:
2020-10-30 12:43:52
阅读次数:
21