firewall是什么: 先声明一点,不知道iptables的,可以先去了解下。 firewalld的底层是通过iptables来实现的,,firewalld 和 iptables 都不是防火墙,它们只是防火墙的管理程序,真正的防火墙是内核的netfilter。CentOs 6 中使用iptable ...
分类:
其他好文 时间:
2020-06-30 14:45:54
阅读次数:
74
将以下shell脚本保存到一个.sh文件中,然后执行就可以将80端口的request访问指向8080了 iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080 ...
分类:
其他好文 时间:
2020-06-21 23:00:24
阅读次数:
126
一、iptables 介绍 (1) 4表五链(工作的第三层,liunx包过滤防火墙) (2)iptables基本用法 (如果不跟-t 表明 默认filter 表) (3)在每次操作防火墙之后 要保存不然在重启防火墙会还原 (4)处理动作(包过滤 匹配即停止) (5)常用的管理规则 (6)添加新的规则 ...
分类:
其他好文 时间:
2020-06-15 11:53:52
阅读次数:
59
一、前言
MySQL对于很多Linux从业者而言,是一个非常棘手的问题,多数情况都是因为对数据库出现问题的情况和处理思路不清晰。在进行MySQL的优化之前必须要了解的就是MySQL的查询过程,很多的查询优化工作实际上就是遵循一些原则让MySQL的优化器能够按照预想的合理方式运行而已。
今天给大家体验MySQL的优化实战,助你高薪之路顺畅!
分类:
数据库 时间:
2020-06-12 11:12:20
阅读次数:
67
一、启动普通的jar程序 1、执行foo.jar启动命令 java -Dcom.sun.management.jmxremote.port=12345 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.au ...
分类:
编程语言 时间:
2020-06-05 10:30:45
阅读次数:
193
场景: 1、有多个ECS实例,其中A实例有公网IP,可以上外网 其它实例没有公网IP,不能上外网 2、所有实例在一个交换机,也就是一个网络(172.16.0.0/16) 实例 内网IP 外网IP A 172.16.117.22 120.27.240.92 B 172.16.117.23 无 目的: ...
分类:
其他好文 时间:
2020-06-03 13:52:30
阅读次数:
118
1.基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # 永久关闭防火墙 chkco ...
分类:
其他好文 时间:
2020-06-02 18:44:01
阅读次数:
58
一、登陆模式和非登陆模式 1 对于登陆和费登陆有着不同启动配置 2 登陆shell(会执行变量的初始化): 在登陆时创建(包括X图形登录) su - 3 非登陆shell: su 图形终端 执行脚本 任何其他bash实例Bash启动任务:profile保存在/etc/profile(全局,所有用户的 ...
分类:
其他好文 时间:
2020-06-01 23:46:27
阅读次数:
93
1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firew ...
分类:
系统相关 时间:
2020-05-31 23:16:44
阅读次数:
121