Linux 系统定时任务:crontab,anacron 一、Cron 服务 1. 启动服务 service cron start 2. 关闭服务 service cron stop 3. 重启服务 service cron restart 4. 重新载入配置 service cron reload ...
分类:
系统相关 时间:
2019-10-30 13:27:51
阅读次数:
100
服务器上的nginx使用logrotate来分割日志,设置为每天分割。但是logrotate似乎没有工作,日志并没有分割。服务器是CentOS 6。为了找到原因,分析可能出错的地方。如果是logrotate未执行,可能是crond没有启动,因为logrotate被/etc/cron.daily/lo... ...
分类:
其他好文 时间:
2019-09-25 15:30:32
阅读次数:
110
入侵排查思路 (1)- 日志分析 入侵排查思路(2)- 账号安全 入侵排查:查询特权用户(uid为0): awk -F: '$3==0{print $1}' /etc/passwd查询可以远程登录的账号信息: awk '/\$1|\$6/{print $1}' /etc/passwd禁用或删除多余可 ...
分类:
系统相关 时间:
2019-08-21 21:45:20
阅读次数:
137
-- [root@li ~]# 加电--BIOS (basic input output system)--以什么设备来启动--/dev/sda -- mbr -- grub.conf --vmlinux and initramfs -- init -- /etc/inittab -- /etc/f ...
分类:
其他好文 时间:
2019-08-10 13:48:57
阅读次数:
122
首先我们立即手动更新所有预先安装的软件: yum -y update 跟着设定系统定时自动更新,第一步确定服务器是否安装了自动执行指令的工具,跟着使用 yum 一个名叫 yum-cron插件。 CentOS 7 使用数个软件来自动执行指令:cron、anacron、at 和 batch,其中 cro ...
分类:
其他好文 时间:
2019-07-11 00:41:00
阅读次数:
174
Linux系统的目录结构(必须掌握的内容) 所有目录只有一个顶点/(根),所有目录的起点。 只有一棵树 Linux的目录结构也是有规律的,而且也是按照类别组织的。 应用程序 /usr/bin 数据文件,帮助/usr/share 配置文件/etc/ 启动命令 /etc/init.d/ 结论: 通俗的理 ...
分类:
系统相关 时间:
2019-04-23 19:08:23
阅读次数:
158
CentOS7使用cron和anacron用来定期重复执行指令1.服务安装1.1查看是否安装yum-cronrpm-qyum-cron1.2安装cronieyum-yinstallcronie1.3安装yum-cronyum-yinstallyum-cron1.4备注单独安装yum-cron也可以,因为yum会自动检测到yum-cron需要一来到cronie然后自动安装2.基本操作2.1启动sys
分类:
其他好文 时间:
2019-02-22 16:50:53
阅读次数:
561
crond定时任务 系统的 crontab,使用配置文件编写定时任务 anacron定时任务 来源:https://blog.csdn.net/sunt2018/article/details/86499396 ...
分类:
系统相关 时间:
2019-01-20 23:39:10
阅读次数:
400
一、cron是开机自动启动的 [root@localhost ~]# chkconfig --list | grep "cron" crond 0:off 1:off 2:on 3:on 4:on 5:on 6:off 可以看到 crond 在系统的3级别是自动启动的。3级、5级是常用的级别 [ro ...
分类:
其他好文 时间:
2019-01-13 14:24:39
阅读次数:
269
Linux的网络功能相当强悍,一时之间我们无法了解所有的网络命令,在配置服务器基础环境时,先了解下网络参数设定命令。 ifconfig 查询、设置网卡和ip等参数 ifup,ifdown 脚本命令,更简单的方式启动关闭网络 ip 符合指令,直接修改上述功能 网卡配置文件详解 ifup,ifdown命 ...
分类:
系统相关 时间:
2018-12-08 14:44:49
阅读次数:
243