码迷,mamicode.com
首页 >  
搜索关键字:firewalld    ( 1378个结果
Tidb 主机系统参数优化shell
#!/bin/bash#echo "vm.swappiness = 0">> /etc/sysctl.confswapoff -a && swapon -asysctl -psystemctl stop firewalld.servicesystemctl disable firewalld.ser ...
分类:数据库   时间:2021-06-08 23:43:55    阅读次数:0
Linux关闭防火墙命令
1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firew ...
分类:系统相关   时间:2021-06-05 17:51:23    阅读次数:0
linux防火墙使用以及配置
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:系统相关   时间:2021-06-04 19:47:34    阅读次数:0
CentOS7使用iptables
1、先停用CentOS7自带的防火墙 //关闭防火墙 systemctl stop firewalld.service //永久关闭防火墙 systemctl disable firewalld.service 2、安装iptables yum install -y iptables-service ...
分类:其他好文   时间:2021-06-02 20:03:37    阅读次数:0
Linux中安装tomcat
Tomcat安装(解压缩安装) 1、安装好了Java环境后我们可以测试下Tomcat!准备好Tomcat的安装包! 2、将文件移动到/usr/tomcat/下,并解压! [root@kuangshen kuangshen]# mv apache-tomcat-9.0.22.tar.gz /usr [ ...
分类:系统相关   时间:2021-06-02 13:42:48    阅读次数:0
防火墙linux
一、防火墙的开启、关闭、禁用命令 (1)设置开机启用防火墙:systemctl enable firewalld.service (2)设置开机禁用防火墙:systemctl disable firewalld.service (3)启动防火墙:systemctl start firewalld ( ...
分类:系统相关   时间:2021-06-02 13:23:22    阅读次数:0
使用RKE快速部署k8s集群
目标 安全 稳定 廉价 快速 容灾 扩展 服务器 基础数据 腾讯云 2核 8GB 5Mbps 安全组配置 开放80、443,允许全部ip访问 开放22、6443,开放当前ip访问 环境 # 卸载firewalld,由安全组统一管理端口 sudo dnf remove firewalld # 关闭交换 ...
分类:其他好文   时间:2021-06-02 12:19:37    阅读次数:0
centos7怎么查看、打开和关闭防火墙
原文地址:https://jingyan.baidu.com/article/49ad8bce97bd965834d8fa8b.html 刚使用centos7会发现,用以前的方式查看、打开和关闭防火墙都无效了。这是因为centos7的防火墙改用firewalld,而不再使用iptables了。下面就 ...
分类:其他好文   时间:2021-05-24 17:14:08    阅读次数:0
linux上编译nginx 实现网页开发
wget http://nginx.org/download/nginx-1.16.1.tar.gz # 解压 tar -xzf nginx-1.16.1.tar.gz cd nginx-1.16.1 # yum升级 yum update # yum安装依赖 yum -y install gcc p ...
分类:Web程序   时间:2021-05-24 15:28:40    阅读次数:0
Centos7 防火墙相关操作
一、CentOS 7 防火墙命令: CentOS升级到7之后,发现无法使用iptables控制Linuxs的端口,baidu之后发现Centos 7使用firewalld代替了原来的iptables。下面记录如何使用firewalld开放Linux端口: 开启端口 firewall-cmd --zo ...
分类:其他好文   时间:2021-05-24 12:20:09    阅读次数:0
1378条   上一页 1 2 3 4 ... 138 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!