08 2021 档案
Shell自动化运维学习
摘要:执行shell脚本的多种方式: 1.[root@localhost ~]# bash file1 //第一种方式 2.[root@localhost ~]# sh file1 //第二种方式 3.[root@localhost ~]# . file1 //第三种方式 4.[root@localhos 阅读全文
posted @ 2021-08-29 15:55 majiajun 阅读(100) 评论(0) 推荐(0)
Centos7 搭建DNS服务
摘要:安装软件包 yum -y install bind //安装bind服务 主配置文件说明 主配置文件路径:/etc/named.conf 配置选项: options { listen-on port 53 { any; }; //监听端口与IP,可填写127.0.0.1或本机实际IP地址。any表示 阅读全文
posted @ 2021-08-27 14:43 majiajun 阅读(201) 评论(0) 推荐(0)