本次在腾讯云上部署vue项目使用nginx代理 腾讯云需要开放端口和绑定域名,这些需要参考腾讯云给的说明 前面是开放外部端口,还需知道软件端口是否打开 Centos7.3防火墙配置 1.查看firewall服务状态:systemctl status firewalld 查看防火墙规则:firewal ...
分类:
其他好文 时间:
2020-06-21 09:35:27
阅读次数:
111
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
关闭防火墙 关闭防火墙 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
centos7中安装zabbix 1、关闭防火墙 # systemctl stop firewalld # setenforce 0 同步时间 # ntpdate pool.ntp.org 2、安装Apache、php、mariadb # yum -y install httpd mariadb m ...
分类:
其他好文 时间:
2020-06-19 00:35:29
阅读次数:
86
配置环境 系统版本: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
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
# 安装补丁包# 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
1 查看防火墙状态 [root@lvxinghao ~]# systemctl status firewalld 2 查看开机是否启动防火墙服务 [root@lvxinghao ~]# systemctl is-enabled firewalld 3 关闭防火墙 [root@lvxinghao ~] ...
分类:
系统相关 时间:
2020-06-16 13:32:34
阅读次数:
95
首先确保防火墙在CentOS 8实例上正确运行。 sudo systemctl status firewalld 安装Apache(在基于RHEL的发行版中,Apache软件包和服务称为httpd)。 yum install httpd 启用Apache服务,并使其在系统启动时启动。 systemc ...
分类:
Web程序 时间:
2020-06-16 13:23:09
阅读次数:
73
查看防火墙状态: systemctl status firewalld.service关闭防火墙: systemctl stop firewalld.service执行开机禁用防火墙自启命令 : systemctl disable firewalld.service启动防火墙:systemctl s ...
分类:
其他好文 时间:
2020-06-16 13:17:59
阅读次数:
122