firewalld打开关闭防火墙与端口 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开机启 ...
分类:
其他好文 时间:
2019-12-03 21:56:19
阅读次数:
154
一、centos7版本对防火墙进行加强,不再使用原来的iptables,启用firewalld1.firewalld的基本使用启动: systemctl start firewalld查状态:systemctl status firewalld 停止: systemctl disable firew ...
分类:
系统相关 时间:
2019-12-03 16:41:46
阅读次数:
101
多看看大神的博客 https://blog.csdn.net/tao934798774/article/details/79491951 ip addr 查看ip地址 ifconfig 查看ip地址 chkconfig iptables off 关闭防火墙 chkconfig sshd on 设置开 ...
分类:
系统相关 时间:
2019-12-02 01:12:56
阅读次数:
140
0.安装前准备 0.1 关闭防火墙 1 service iptables status 2 service iptables stop 0.2 关闭Selinux 很多稀奇古怪的问题都是SELINUX导致的。 1.创建用户 1 useradd hadoop -d /home/hadoopecho 2 ...
分类:
Web程序 时间:
2019-12-01 12:03:25
阅读次数:
88
centos linux7.5 1、关闭防火墙、关闭selinux、关闭swapoff -a systemctl stop firewalldselinux=disabledswapoff -a 2、安装docker 1)常用方法 2)本地rpm包安装 3)二进制安装 3、安装cfssl工具(任何一 ...
分类:
其他好文 时间:
2019-11-29 15:55:58
阅读次数:
66
1.基础优化,规范目录: mkdir -p /server/tools mkdir -p /server/scripts 3. 修改主机名 4. 更新yum源 5、安全优化: a. 关闭SELinux b.关闭防火墙 systemctl stop firewalld 关闭防火墙服务 systemct ...
分类:
其他好文 时间:
2019-11-25 15:04:31
阅读次数:
83
安装jumpserver 1.关闭防火墙 关闭SElinux systemctl stop firewalld.service systemctl disable firewalld.service setenforce 0 2.修改字符,防止乱码(这步完事之后就变成中文的虚拟机了。。。我的天) l ...
分类:
其他好文 时间:
2019-11-25 11:09:23
阅读次数:
81
查看网络信息 ifconfig 重启网卡 systemctl restart network 或 service network restart 关闭防火墙 systemctl stop firewalld 查看系统日志 journalctl -xe 挂载光盘 mount /dev/cdrom /m ...
分类:
其他好文 时间:
2019-11-23 21:48:34
阅读次数:
65
LAMP环境的搭建 L :Linux A :apache M :mysql P :PHP 实验建议关闭防火墙和修改SE Linux机制,或者设置防火墙。 步骤: 1、安装apache服务 yum install -y httpd httpd-devel 测试: 在浏览器中直接访问localhost是 ...
分类:
系统相关 时间:
2019-11-23 13:12:14
阅读次数:
96
windows PowerShell (管理员) 或 CMD (管理员) 查看当前防火墙状态:netsh advfirewall show allprofiles 关闭防火墙:netsh advfirewall set allprofiles state off 开启防火墙:netsh advfir ...