Linux FTP 备份服务器部署文档

客户需求部署
4台网站服务器 1台备份服务器

需求 : 集中备份 每天/每周/每月的网站数据至独立的备份服务器

网站服务器 均采用cPanel 支持周期备份

完成后测试了一下 速度还可以 100M端口跑满

部署安装
# 编译安装ProFTPD

#设置开机启动
chkconfig proftpd on
#启动
service proftpd start

#添加备份的用户组和用户 Continue reading “Linux FTP 备份服务器部署文档”

自动Kill使用太多处理器资源的进程

#!/bin/bash

# March-13-2006
# CPUuse trigger script by Noel
#
# bash code to watch a running program’s CPU usage.
# if it’s above a set value, it will auto send an email.
# You will need to set a Cron job to run this script every xx minutes
#
# Set some needed things:
#
processToWatch=”convert” # in my case I need to watch convert
emailAddress=”root@host” # this is my main emailaddress
triggerValue=90 # if the CPU use is above 90% send an email. DO NOT USE a DOT or COMMA!
tempFileName=tmp-cpu # some name of the temp file for the ps, grep data Continue reading “自动Kill使用太多处理器资源的进程”

cPanel 账户的批量备份 批量转移 批量恢复 教程

虽然使用cPanel自带的GUI可以操作 但是不太方便

建议使用脚本方式 可见 速度也快些

首先
取cPanel的用户 然后调用备份脚本 执行备份操作

然后等待完成 会获得 备份好的压缩包
在 /home/ 目录下 格式为 cpmove-用户名*.tar.gz

然后使用SCP 传输到远程的新服务器的Home目录 Continue reading “cPanel 账户的批量备份 批量转移 批量恢复 教程”

Apache httpd 2.4 使用Nginx跑静态文件 mod rpaf失效的解决办法

Apache httpd 2.4 使用Nginx跑前台 mod rpaf失效的解决办法

其实apache 2.4 的版本 已经不在需要rpaf了
直接使用 apache 默认自带的mod_proxy 就可以

默认core编译了 检查是不是有这个mod_proxy模块
执行 httpd -M | grep “proxy”
看下是不是有
如果有的话 会返回
20130505023120

新增proxy的配置文件
一般建议命名为 httpd-proxy.conf
内容为

将IP地址改下
其他和之前一样配置即可

DirectAdmin的Nginx插件已经支持Apache 2.4 了
老用户如果需要可以联系我们升级版本
均测试OK 运行无压力

动态header
apache-head

静态header
nginx-head

Posts navigation

1 2 3 10 11 12 13 14 15 16 31 32 33
Scroll to top