防火墙:selinux

[[email protected] ~]# getenforce      # 查看 selinux 的状态
[[email protected] ~]# setenforce 0    # 临时关闭 selinux
[[email protected] ~]# sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/‘ /etc/selinux/config  # 永久关闭 selinux
时间: 2024-10-13 12:22:10

防火墙:selinux的相关文章

linux日常管理-防火墙selinux

关闭防火墙 SELINUX=disabled 可以是三种状态 # enforcing - SELinux security policy is enforced.打开# permissive - SELinux prints warnings instead of enforcing.打开不拦截# disabled - No SELinux policy is loaded.关闭,默认 selinux在打开状态下,可以使用下面两个命令 第一个命令是查询selinux的状态,处于关闭状态. 第二个

Centos防火墙&SELINUX关闭及yum源配置

Centos防火墙及SELINUX关闭 Centos6.x /etc/init.d/iptables stop chkconfig iptables off sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config grep SELINUX=disabled /etc/selinux/config setenforce 0 Centos7.x systemctl stop firewalld.service system

centos 网卡重启/防火墙/selinux/hosts-dns

1.centos6网卡重启:service network restartcentos7网卡重启:systemctl restart network[[email protected] ~]# systemctl restart network 网卡配置文件:[[email protected] network-scripts]# cat -n ifcfg-ens33 [[email protected] network-scripts]# pwd/etc/sysconfig/network-s

Linux防火墙(SElinux、netfilter)防火墙工具iptables

Linux防火墙 SElinux防火墙 SElinux是Linux系统特有的安全机制,一般装完系统后都会手动将它关闭: 查询状态 getenforce Enforcing:为开启状态,Permissive:为临时关闭状态,Disabled:为关闭状态: [[email protected] ~]# getenforce Enforcing [[email protected] ~]# 临时关闭 setenforce 0 [[email protected] ~]# getenforce Enfo

笔记8(日常运维w、vmstat、top、sar、nload、free、ps、netstat、tcptump、Linux防火墙)

w查看系统负载 date 查看当前系统的时间 w出来的,第一行从左面开始显示的信息依次为:时间,系统运行时间,登录用户数,平均负载.第二行开始以及下面所有的行,告诉我们的信息是,当前登录的都有哪些用户,以及他们是从哪里登录的等等.其实,在这些信息当中,我们最应该关注的应该是第一行中的 'load average:' 后面的三个数值. 第一个数值表示1分钟内系统的平均负载值:第二个数值表示5分钟内系统的平均负载值:第三个数值表示15分钟系统的平均负载值.这个值的意义是,单位时间段内CPU活动进程数

linux日常维护(网络相关,防火墙,netfirter介绍,netfirter语法)

1.linux网络相关 ifconfig 查看网卡ip (centos6是默认有的,centos7里没有,需要下载  yum install net-tloos) 关闭网卡:     ifdown +网卡    (关闭后没有ip) 打开网卡      ifup  +网卡 重启指定的网卡.如果网卡正在远程连接,不要直接ifdown网卡,如果服务器不在身边,过程很繁琐, 应该执行 ifdown +网卡 && ifup +网卡 设置一个虚拟网卡的步骤: 1.到网卡配置目录 [[email pro

网卡相关,防火墙,iptables

Linux网络相关 ifconfig查看网卡ip(yum install net-tools) ifdown ens33 /ifup ens33,单独重启某一个网卡的服务(ifdown ens33 && ifup ens33) 设定虚拟网卡ens33:0 [[email protected] ~]# cd /etc/sysconfig/network-scripts/ [[email protected] network-scripts]# ls ifcfg-ens33 ifdown-is

阿里云服务器 ECS 部署lamp:centos+apache+mysql+php安装配置方法 (centos7)

1.效果图 1 2. 部署步骤 1 1. mysql安装附加(centos7) 7 3.错误注意****** 10 1.效果图 2.部署步骤 链接 http://jingyan.baidu.com/article/870c6fc31218e8b03fe4be16.html 首先安装apachecentos可以直接yum安装apache ?. 命令:yum install httpd ? //根据提示,输入Y安装即可成功安装? 然后启动apache,并且设置系统让?Apache 开机自动启动. 命

linux的密钥认证

创建.ssh#mkdir /root/.ssh/ 创建文件并复制公钥放入文件爱你里#vi /root/.ssh/authorized_keys sgjkhkgjhskghskghskghskgskg 保存退出:wq 修改目录权限#chmod 700 /root/.ssh 修改文件权限#chmod 600 /root/.ssh/authorized_keys 修改文件#vi /etc/selinux/config 关闭selinux安全防火墙SELINUX=disabled :wq 清除iptab

mysql编译安装完成后,启动时报错The server quit without updating PID file

源码包下载: 编译安装: 设置配置文件: 添加启动脚本: 添加开机启动项: 完成后,/etc/init.d/mysqld start 时候报错如下: Starting MySQL..The server quit without updating PID file ( [FAILED] al/mysql/data/FrankTest01.pid). 1.防火墙SELINUX有没有关闭 2.3306端口有没有被占用   netstat -tulanp 3.是否有其他相关的mysqld进程在运行.