nginx版本 1.22.1 依赖模块 stream、stream_ssl、stream_ssl_preread 配置代码 # 如:8080端口根据http和https分别转向不同的服务:https跳转至127.0.0.1:8081,http跳转至127.0.0.1:8082,在nginx配置文件中添加如下代码即可: # 注意,以下代码位置 和 h…
编写备份脚本 新建目录 用于存放当前用户下的自定义定时任务脚本 # 新建定时任务脚本存放目录 mkdir -p /home/myCron; 新建文件 touch /home/myCron/backup_pg.sh; 授予可执行权限 chmod +x /home/myCron/backup_pg.sh; 编写删除脚本 vim /home/myCron…
Pg查看每个表所占用磁盘空间大小 参考连接:https://blog.csdn.net/yueludanfeng/article/details/86487585 -- 方法1 select table_full_name, round( CAST ( size as numeric ) / 1024 / 1024 / 1024, 2 ) || '…
参考:https://geek-docs.com/git/git-questions/1678_git_clear_git_local_cache.html git rm -r --cached .git add .git commit -m 'update .gitignore'
[TOC] cron介绍 我们经常使用的是crontab命令是cron table的简写,它是cron的配置文件,也可以叫它作业列表,我们可以在以下文件夹内找到相关配置文件。 /var/spool/cron/ 目录下存放的是每个用户包括root的crontab任务,每个任务以创建者的名字命名 /etc/crontab 这个文件负责调度各种管理和维护…
软件下载 ClamAV官网地址 软件安装 离线安装 # 如:文件clamav-1.0.4.linux.x86_64.deb上传至/home/software目录 cd /home/software # ubuntu系统下可使用dpk -i 命令安装 dpkg -i clamav-1.0.4.linux.x86_64.deb # 安装后的默认配置文件…
上传文件至指定目录 # 上传文件至/home/zhoujibin/package # 主程序 /home/zhoujibin/package/prometheus-2.45.0.linux-amd64.tar.gz # node节点程序 /home/zhoujibin/package/node_exporter-1.6.1.linux-amd64.…
@echo off rem 提供Windows下nginx的启动,重启,关闭功能 echo ==================begin======================== cls ::ngxin 所在的盘符 set NGINX_PATH=D: ::nginx 所在目录 set NGINX_DIR=D:\program-dev\ngi…
隐藏版本号及关闭文件索引 # 隐藏版本号 在http 配置中添加:server_tokens off;配置即可 http { # 其他配置xxx server_tokens off; # 关闭文件索引 autoindex off; } # 重启nginx后即可生效 systemctl reload nginx; 全路径匹配 # 比如当前请求路径包含…
windows下微信多开操作步骤 编写脚本 # 1、注意,start 后面的路径为本地微信安装路径,需要根据实际情况调整。 @echo off # 启动两个微信,可根据实际情况调整 start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe" start "" "D:\Program Fil…