码迷,mamicode.com
首页 >  
搜索关键字:iptables firewalld    ( 5615个结果
gitlab-ci部署实现持续集成(centos7)
一、gitlab安装 1. 环境准备 // selinux和 firewall 关闭 $ setenforce 0 $ sed -i "/^SELINUX/s/enforcing/disabled/" /etc/selinux/config $ systemctl stop firewalld $ ...
分类:其他好文   时间:2020-07-08 23:05:44    阅读次数:100
centos7系统常用命令使用整理
centos7是一个优秀免费的操作系统,最近使用centos7部署了一些php系统,数据库有的是mysql,有的是postresql,都特别的稳定好用 ...
分类:其他好文   时间:2020-07-08 15:03:42    阅读次数:68
002.Nginx安装及启动
一 Nginx yum安装1.1 前置准备 1 [root@nginx01 ~]# systemctl status firewalld.service #检查防火墙 2 [root@nginx01 ~]# getenforce #检查SELinux 3 Disabled提示:建议关闭防火墙,或通过 ...
分类:其他好文   时间:2020-07-08 13:31:28    阅读次数:61
Dokcer容器内无法域名解析
0x00 原因 Linux系统默认情况下是未打开ip转发功能的,docker容器内部的网络是由Linux的iptables制定转发规则实现的。 所以当Linux未打开IP转发时,会造成容器内部无法解析域名。 0x01 解决方案 暂时解决: 查看如下地址中的数值(1为开启,0为关闭) /proc/sy ...
分类:其他好文   时间:2020-07-07 09:38:39    阅读次数:90
docker网络管理
查看docker支持的网络驱动 [root@localhost ~]# docker info |grep "Network" WARNING: bridge-nf-call-iptables is disabled WARNING: bridge-nf-call-ip6tables is disa ...
分类:其他好文   时间:2020-07-06 20:23:49    阅读次数:81
CentOS7防火墙之--firewalld
firewalld防火墙 一、防火墙安全概述 在CentOS7系统中集成了多款防火墙管理工具,默认启用的是firewalld(动态防火墙管理器)防火墙管理工具,Firewalld支持CLI(命令行)以及GUI(图形)的两种管理方式。 对于接触Linux较早的人员对Iptables比较熟悉,但由于Ip ...
分类:其他好文   时间:2020-07-06 19:24:38    阅读次数:61
ELK+RabbitMq搭建日志系统
环境准备 1. 三台服务器 10.1.34.215 10.1.34.216 10.1.34.217 2. 全部关闭防火墙和selinux systemctl stop firewalld && systemctl stop firewalld sed -i 's/=enforcing/=disabl ...
分类:其他好文   时间:2020-07-06 16:04:30    阅读次数:59
shell-脚本_防火墙规则的简单应用
脚本源码:#!/bin/bashecho_caidan() {# 清空防火墙规则read -ep "是否清空防火墙规则(y/n):" nameif [ $name == y ];then iptables -F echo " 1) 放行端口 2) 封锁端口 3) 放行ip 4) 封锁ip "else... ...
分类:系统相关   时间:2020-07-06 11:04:21    阅读次数:99
centos7关闭防火墙
centos6中防火墙是iptables,centos7中防火墙是firewalld 在centos7中用service iptables status查看防火墙状态会报错 Redirecting to /bin/systemctl status iptables.service Unit ipta ...
分类:其他好文   时间:2020-07-06 10:48:36    阅读次数:94
nginx源码安装-centos7
安装平台:centos7.3 1、下载包到指定目录 wget http://nginx.org/download/nginx-1.16.1.tar.gz -P /tmp 2、解压包 tar -zxvf /tmp/nginx-1.16.1.tar.gz -C /tmp 3、安装依赖包 yum -y i ...
分类:其他好文   时间:2020-07-04 23:05:57    阅读次数:109
5615条   上一页 1 ... 15 16 17 18 19 ... 562 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!