关闭防火墙: systemctl stop firewalld.service systemctl disable firewalld.service 需要关闭 selinux,一定要关闭这个,开启selinux会引起一连串问题,甚至zabbix的discovery功能也不能正常使用 sed -i ...
分类:
其他好文 时间:
2020-09-04 17:35:16
阅读次数:
101
一、docker安装 VMware centos7 # 卸载原有docker yum remove docker docker-common docker-selinux docker-engine -y # 安装yum工具包(方便配置安装源)和数据存储驱动包 yum install -y yum- ...
分类:
其他好文 时间:
2020-08-28 11:44:28
阅读次数:
56
关闭防火墙 selinux systemctl stop firewalld.service #关闭防火墙 systemctl disable firewalld.service #关闭开机自启 setenforce 0 #临时解决selinux sed -i 's/^SELINUX=.*$/SEL ...
分类:
其他好文 时间:
2020-08-25 18:44:50
阅读次数:
60
环境:salt-master:centos7.8salt-minion(2台):centos6.10salt-minion(1台):centos7.8关闭selinux和firewalld,iptables开放4505和4506端口目的:通过salt-master实现对salt-minion的批量自动安装mysql步骤(都在master执行):1,检测连通性salt‘*‘test.
分类:
数据库 时间:
2020-08-24 16:46:46
阅读次数:
73
编写脚本selinux.sh,实现开启或禁用SELinux功能[root@centos7scripts]$catselinux.sh#!/bin/bash#STATE=`grep‘SELINUX\>‘/etc/selinux/config|grep-v‘^#‘|cut-d=-f2`case$1instart)["$STATE"="enforcing"]||sed-i‘/SELINUX/s@d
分类:
其他好文 时间:
2020-08-19 20:07:54
阅读次数:
132
环境:服务端:centos7客户端:centos6,centos8,Ubuntu18关闭selinux,firewalld,ntpd服务软件包:chrony.x86_64.rpm服务名:chronydcentos安装:yuminstall-ychronyUbuntu安装:aptinstall-ychrony服务端:查看安装配置文件:rpm-qlchrony[09:13:39-root@localh
分类:
其他好文 时间:
2020-08-15 23:54:04
阅读次数:
91
sed选择行号进行处理1~2,奇数行2~2,偶数行#p对第几行进行打印参数:p打印,d删除,I忽略大小写,a追加,i之前添加,c替换,!取反-n关闭自动打印ifconfig|sed-n‘2,4p‘-i修改原文-i.bak修改文件并备份eg:sed-i‘/^SELINUX=/cSELINUX=disabled‘/etc/sysconfig/selinuxsed-n‘1~2!p
分类:
其他好文 时间:
2020-08-13 12:02:45
阅读次数:
87
环境:centos7,内核版本高于3.10 解释的话不多说,直接上才艺 查看当前内核版本 uname –r 更新centos yum –y update 如果安装过旧版本则卸载 yum remove docker docker-common docker-selinux docker-engine ...
分类:
其他好文 时间:
2020-08-11 10:42:52
阅读次数:
86
环境说明: |系统|IP|所需服务 |--|--|-- |CentOS7|192.168.159.144|nginx、mysql、php|(wordpress) 实验前请关闭防火墙和SELINUX,并配置好网络源 1. 安装nginx //安装依赖包 [root@longnian ~]# yum - ...
分类:
系统相关 时间:
2020-08-08 17:44:45
阅读次数:
101
【RHEL8】—NFSserver ;【Centos7】—NFSclient !!!测试环境我们首关闭防火墙和selinux(NFSserver和NFSclient都需要) [root@localhost ~]# systemctl stop firewalld [root@localhost ~] ...
分类:
系统相关 时间:
2020-07-29 17:51:31
阅读次数:
90