码迷,mamicode.com
首页 >  
搜索关键字:selinux iptables    ( 7147个结果
cobbler部署错误总结
web 报错500 Internal Server Error解决方案# 在安装使用Cobbler web界面的时候提示HTTP 500错误,也就是服务器内部错误,检查防火墙和selinux都是为关闭状态,后面查看日志发现报错信息如下: 其实就是python django 的问题。 解决办法: 1、 ...
分类:其他好文   时间:2020-06-20 21:05:35    阅读次数:59
Linux关闭防火墙
Centos 6.x版本 iptables 查看防火墙状态:service iptables tatus iptables:Firewall is not runing. 说明防火墙没有开启 开启防火墙:service iptables start 关闭防火墙:service iptables st ...
分类:系统相关   时间:2020-06-20 17:02:14    阅读次数:62
linux Centos防火墙工具iptables的使用
一、安装iptables 1.1、查看是否安装 systemctl status iptables 输出结果表示没有安装该服务,需要先安装。 1.2、安装iptables yum install iptables-services 输出结果表示安装完成。 1.3、检查是否安装成功 systemctl ...
分类:系统相关   时间:2020-06-20 15:45:46    阅读次数:72
关闭centos7防火墙
关闭防火墙 关闭防火墙 sed -ri 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config #关闭selinux setenforce 0 #临时关闭防火墙策略,1开0关 systemctl stop firewalld #临时关闭防火墙 s ...
分类:其他好文   时间:2020-06-20 11:00:08    阅读次数:58
iptables执行时报错"iptables : Couldn't load target `standard':No such file or directory"如何处理?
答:重装iptables 查看库 # dpkg -L iptables | fgrep standard /usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 重装iptables # apt install --reinstall -y iptab ...
分类:其他好文   时间:2020-06-19 20:48:20    阅读次数:203
能够ping通,但是不能telnet,不能ssh -SuSE
主要原因,应该是防火墙的原因。解决方法,关闭防火墙。 SuSE下: service SuSEfirewall2_setup status service SuSEfirewall2_setup stop rhel下: service iptables stop ...
分类:Web程序   时间:2020-06-18 22:12:27    阅读次数:90
shell-安装lnmp,一键脚本_简单版
配置环境 系统版本:centos7 nginx版本: nginx-1.14.2 mysql版本: php版本:PHP 5.4.16 一键安装脚本源码 1 #!/bin/bash 2 # 关闭防火墙与selinux 3 systemctl stop firewalld.service && seten ...
分类:系统相关   时间:2020-06-18 21:50:12    阅读次数:91
centos7下安装harbor
1、修改基础环境 更改主机名,关闭防火墙和selinux hostnamectl set-hostname 7niu systemctl stop firewalld systemctl disable firewalld setenforce 0 sed -i 's/SELINUX=enforci ...
分类:其他好文   时间:2020-06-18 10:27:39    阅读次数:139
K8S主机环境配置(二)
# 安装补丁包# yum install -y conntrack ipvsadm ipset jq iptables curl sysstat libsecomp wget net-tools git vim# 禁用防火墙# systemctl stop firewalld && systemct ...
分类:其他好文   时间:2020-06-18 01:44:16    阅读次数:65
Linux MySQL集群搭建之主从复制
前期准备 准备两台Linux,一主,一从,具体Linux安装MySQL操作步骤:点我直达 集群搭建 注意事项 一主可以多从 一从只能一主 关闭主从机器的防火墙策略 chkconfig iptables off service iptables stop 主服务器配置 修改my.cnf文件 vim / ...
分类:数据库   时间:2020-06-17 23:13:33    阅读次数:107
7147条   上一页 1 ... 20 21 22 23 24 ... 715 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!