分类: 程序世界

175 篇文章

thumbnail
Nginx 平滑升级
使用Nginx安装目录的make命令完成升级 第一步: 将老版本的sbin目录下的nginx进行备份 cd /usr/local/nginx/sbin mv nginx nginxold 第二步: 将新版本安装目录编译后的objs目录下的nginx文件,拷贝 到原来/usr/local/nginx/sbin目录下 cd ~/nginx/core/n…
mysql 数据库 设置定时备份
创建 /data/autobak/ 目录 mkdir /data/autobak/file/ cd /data/autobak/ 编辑文件 vi bkDatabaseName.sh #!/bin/bash source /etc/profile DATE=`date +%F` OLDATE=`date -d -30days +%F` /usr/lo…