linux postfix 服务
systemctl status [postfix](https://51tbox.com/ "View all posts in postfix") 系统邮件服务检测 ![](http://static.51tbox.com/static/2024-08-29/col/5dd3fe80933784cf26ad6975f2e6cb01/02e55503d...
systemctl status [postfix](https://51tbox.com/ "View all posts in postfix") 系统邮件服务检测 ![](http://static.51tbox.com/static/2024-08-29/col/5dd3fe80933784cf26ad6975f2e6cb01/02e55503d...
这篇文章, 白眉大 -叔将要系统的讲解 linux 定时任务。这里用centos 7 来做演示。 首先定时任务本意就是 什么时间 执行什么命令。 定时任务的作用主要分为: 定时备份( 比如: 重要的系统文件, 系统数据, 业务文件,业务数据等。); 定时数据统计; 定时辅助进程运行(比如: 刚开发的某个程序 还不稳定,可以进行这种辅助运行); 定时任务配置文件 有3 个...
**案例4:每天凌晨12点 查找/data目录下7天前的文件并删除(7天前的文件通过修改时间来创建)[笔试题](https://51tbox.com/ "View all posts in 笔试题")** 00 00 \* \* \* root find /data/ -type f -mtime +7 -name "\*.log"\|...
软中断: 定时任务就是, 固定的时间通知系统我要中断了 硬中断: 不知道什么时候 会中断
ln -s 实际存储的目录 链接目录 ln -sv fileName linkName (1)创建一个符号链接将新的Docker目录链接到原来的位置: ```hljs javascript sudo ln -s /new/docker /var/lib/docker ``` ![](http://static.51tbox.com/static/2024...
[iftop](https://51tbox.com/ "View all posts in iftop") 查看我们和哪个服务器或者网站在传输数据 (安装需要 epel 扩展的仓库) iftop - display bandwidth usage on an interface by host ![](http://static.51tbox.com/...
是否可以写入数据到磁盘,需要查看 [inode](https://51tbox.com/ "View all posts in inode") 和 [block](https://51tbox.com/ "View all posts in block") inode 号分配完了 block 块满了
董喜楠 #### 1-25题每题4分共100分,单词每题1分共10分,扩展题10分,总分120分 **01.查看大文件的命令** less **02.过滤/var/log/secure文件中所有的Failed并统计行数** grep 'Failed' /var/log/secure **03.导致无法写入数据到磁盘的原因** inode 号分配完了...
你好,我是猿java。 今天我们分享的内容是:Redis 分布式锁。 Redis 部署方式 {#Redis-部署方式} ------------------------ ### 单机部署 {#单机部署} 单机部署,顾名思义,只部署一个Redis节点,其优点是简单,简单,简单;缺点也很明显:无法保证高可用。部署图如下: ![img.png](/images/post/r...
Hello,Hi,你好,我是猿java。 今天我们分享的内容是:GGossip协议如何保证 Redis数据的一致性。 > 声明:本文基于 Redis 7.0 版本 提起 Redis,应该说是 NO SQL数据库的天花板了,作为一名 Java工程师应该并不陌生,那么,Redis 是如何保证集群节点间数据的一致性呢?今天就来聊一聊。 在开始今天的内容之前,需要先对 Go...