Nginx 四层代理理仅能存在于 main 段,以下是代理的配置 stream { upstream ssh_proxy { hash $remote_addr consistent; server 192.168.1.10:22; #实际的服务器IP及端口 } upstream mysql_pro ...
分类:
其他好文 时间:
2020-05-28 23:13:04
阅读次数:
88
脚本用于在Chrome的Console内定时刷新网页 timeout=prompt("Set timeout (Second):"); count=0 current=location.href; if(timeout>0) setTimeout('reload()',1000*timeout); ...
分类:
Web程序 时间:
2020-05-27 18:35:28
阅读次数:
175
进入 nginx 目录中 cd /usr/local/nginx/sbin 1、查看 nginx 版本号 ./nginx -v 2、启动 nginx ./nginx 3、停止 nginx ./nginx -s stop 4、重新加载 nginx,修改nginx.conf文件后需要重新加载才能生效 . ...
分类:
其他好文 时间:
2020-05-27 18:25:45
阅读次数:
68
修改宝塔密码(testpasswd为要修改的密码) cd /www/server/panel && python tools.py panel testpasswd 查看宝塔登录信息 bt default 执行指令 bt 启动/停止/重启/卸载 /etc/init.d/bt start /etc/i ...
分类:
其他好文 时间:
2020-05-27 12:05:26
阅读次数:
61
function myrefresh() { window.location.reload(); } setTimeout('myrefresh()', 1000); //指定1秒刷新一次 </script> ...
分类:
其他好文 时间:
2020-05-25 22:16:57
阅读次数:
77
下载 各个版本Docker地址:https://download.docker.com/linux/static/stable/x86_64/ 1.上传、解压 mkdir /usr/local/docker mv docker-19.03.2.tgz /usr/local/docker tar zx ...
分类:
其他好文 时间:
2020-05-23 09:51:01
阅读次数:
646
nginx #启动nginxnginx -t #测试配置文件是否有语法错误nginx -s reopen #重启Nginxnginx -s reload #重新加载Nginx配置文件,然后以优雅的方式重启Nginxnginx -s stop #强制停止Nginx服务nginx -s quit #优雅 ...
分类:
其他好文 时间:
2020-05-22 19:52:49
阅读次数:
51
国内从 DockerHub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务,例如: 网易:https://hub-mirror.c.163.com/ 阿里云:https://<你的ID>.mirror.aliyuncs.com 七牛云加速器 ...
分类:
其他好文 时间:
2020-05-21 16:13:23
阅读次数:
97
"nginx documentation" Compile "Building nginx from Sources" Reload Auto Index "Module ngx_http_autoindex_module" ...
分类:
其他好文 时间:
2020-05-21 13:12:17
阅读次数:
56
前一段时间就在研究用Dockerfile构建MySQL镜像并实现容器启动过程中MySQL数据库系统的初始化,但被一些无关紧要的事儿给耽误了,经过查阅《dockerfile最佳实践》及MySQL数据库的迁移与备份还原的资料,整理了操作过程,并进行了实验,确认此方法可行:MySQL数据库系统的初始化是指MySQL安装到OS上后所经历的initinstall过程,只有经过初始化的数据库系统才能提供数据存
分类:
数据库 时间:
2020-05-21 10:37:40
阅读次数:
76