Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache ...
分类:
系统相关 时间:
2021-03-06 14:52:16
阅读次数:
0
[root@zhaodong zhaodong]# iptables -I INPUT -s 192.168.10.0/24 -p tcp --dport 22 -j ACCEPT [root@zhaodong zhaodong]# iptables -A INPUT -p tcp --dport ...
分类:
系统相关 时间:
2021-03-01 13:25:10
阅读次数:
0
CentOS7 的防火墙配置跟以前版本有很大区别,CentOS7这个版本的防火墙默认使用的是firewall,与之前的版本Centos 6.x使用iptables不一样 一、iptables防火墙 1、基本操作 查看防火墙状态 service iptables status 停止防火墙 servic ...
分类:
系统相关 时间:
2021-02-27 13:22:40
阅读次数:
0
root用户登录服务器 22端口修改为22525,22端口也打开,以防新端口设置有问题,登录不上服务器 向防火墙中添加修改的端口 systemctl start firewalld firewall-cmd --zone=public --add-port=22/tcp --permanent fi ...
分类:
系统相关 时间:
2021-02-23 14:06:08
阅读次数:
0
Google Cloud Platform https://cloud.google.com/icons/ Azure https://docs.microsoft.com/en-us/azure/architecture/icons/ CISCO http://www.cisco.com/web/ ...
分类:
其他好文 时间:
2021-02-19 12:57:52
阅读次数:
0
1.防火墙开放端口 firewall-cmd --zone=public --add-port=8848/tcp --permanent firewall-cmd --list-ports 开放centOS 网关,远程连接 grant all privileges on *.* to 'root'@ ...
Java的注释 在程序中,尤其是复杂的程序中,适当地加入注释可以增加程序的可读性,有利于程序的修改、调试和交流。注释的内 容在程序编译的时候会被忽视,不会产生目标代码,注释的部分不会对程序的执行结果产生任何影响。 注意事项:多行和文档注释都不能嵌套使用。 Java中的注释有三类 单行注释 // 多行 ...
分类:
编程语言 时间:
2021-02-16 12:00:51
阅读次数:
0
微信小程序反编译出现错误SyntaxError:Unexpected end of input 在使用wxappUnpacker反编译一些小程序得时候经常会遇到这个问题:翻译过来是:输入意外终止。借鉴网上其他大佬的看法是因为微信版本升级后,会遇到各种报错, 以及无法获取到wxss的问题。 导致拿不到 ...
分类:
微信 时间:
2021-02-16 11:57:46
阅读次数:
0
1.确认redis在后台开启 2.开放端口号6379 systemctl stop firewalld systemctl mask firewalld ...
分类:
其他好文 时间:
2021-02-02 11:24:29
阅读次数:
0
打开21端口,出现“”错误,如:firewall-cmd --zone=public --permanent --add-port=21/tcp 说明防火墙没打开 解决办法: 执行:systemctl status firewalld查看防火墙 执行:systemctl start firewall ...
分类:
其他好文 时间:
2021-02-02 11:00:25
阅读次数:
0