以放行redis默认端口6379为例 查看防火墙端口列表 firewall-cmd --list-ports 开启6379端口 firewall-cmd --zone=public --add-port=6379/tcp --permanent 关闭6379端口 firewall-cmd --zon ...
分类:
系统相关 时间:
2020-07-10 10:08:11
阅读次数:
104
var index=parent.layer.getFrameIndex(window.name); //获取当前窗口的name parent.layer.close(index);//关闭当前窗口 window.parent.location.reload();//刷新例子: layui.use( ...
分类:
其他好文 时间:
2020-07-07 17:18:39
阅读次数:
162
准备两个nginx服务 配置其中一个server指令块 listen 127.0.0.1:80; 即,只能本地访问。 (1)不能直接 -s reload, 应该先 -s stop 然后重新开启nginx进程 配置另外一个server (1)引入模块 include vhost/*.conf; (2) ...
分类:
其他好文 时间:
2020-07-07 15:31:35
阅读次数:
74
允许鼠标滚动 新的配置项已简化为 set -g mouse on 将他写到 ~/.tmux.conf 中然后执行 tmux source ~/.tmux.conf 注意2.1版本以下的配置项在新版本中已经被废弃 setw -g mouse-resize-pane on setw -g mouse-s ...
分类:
其他好文 时间:
2020-07-05 00:55:28
阅读次数:
133
apiVersion: v1 data: Corefile: | .:53 { errors health { lameduck 5s } ready kubernetes cluster.local in-addr.arpa ip6.arpa { pods insecure fallthrough ...
分类:
其他好文 时间:
2020-07-04 20:56:51
阅读次数:
114
1,刷新页面 //刷新页面 //默认为 false,从客户端缓存里取当前页。true, 则以 GET 方式,从服务端取最新的页面 window.location.reload(true); ...
分类:
Web程序 时间:
2020-07-04 15:32:17
阅读次数:
103
常用命令介绍 firewall-cmd --state ##查看防火墙状态,是否是running firewall-cmd --reload ##重新载入配置,比如添加规则之后,需要执行此命令 firewall-cmd --get-zones ##列出支持的zone firewall-cmd --g ...
分类:
其他好文 时间:
2020-07-03 12:56:53
阅读次数:
68
Commands start:立刻启动后面接的 unit。 stop:立刻关闭后面接的 unit。 restart:立刻关闭后启动后面接的 unit,亦即执行 stop 再 start 的意思。 reload:不关闭 unit 的情况下,重新载入配置文件,让设置生效。 enable:设置下次开机时, ...
分类:
其他好文 时间:
2020-07-02 21:52:31
阅读次数:
75
分析ngx_get_options()函数 这个函数的作用就是解析nginx的启动命令传递的参数, 比如/usr/local/nginx/sbin/nginx -s reload, /usr/local/nginx/sbin/nginx -t等 http://nginx.org/en/docs/sw ...
分类:
其他好文 时间:
2020-07-02 18:16:55
阅读次数:
48
JVM class文件格式 魔法数 CAFE BABE 编译器版本号 Constant count Constant pool access flag this class super class interface count interfaces field count fields metho ...
分类:
其他好文 时间:
2020-07-01 20:22:12
阅读次数:
65