系统相关
首页 > 系统相关> > centos搭建proxypool

centos搭建proxypool

作者:互联网

步骤

  1. 安装宝塔并安装nginx做反向代理
  2. 在根目录创建一个目录名proxy
  3. 下载一个proxpool主程序和config和source的配置文件
  4. nginx添加域名开启反向代理
  5. 运行程序

安装宝塔

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

根下创建目录名proxy

proxypool

https://pan.geekrabbit.top/?explorer/share/fileOut&shareID=7tywdr6g&path=%7BshareItemLink%3A7tywdr6g%7D%2F%E8%84%9A%E6%9C%AC%E6%96%87%E4%BB%B6%2Fproxypool%2Fproxypool

config.ymal

https://pan.geekrabbit.top/?explorer/share/fileOut&shareID=7tywdr6g&path=%7BshareItemLink%3A7tywdr6g%7D%2F%E8%84%9A%E6%9C%AC%E6%96%87%E4%BB%B6%2Fproxypool%2Fconfig.yaml

sourcel.ymal

https://pan.geekrabbit.top/?explorer/share/fileOut&shareID=7tywdr6g&path=%7BshareItemLink%3A7tywdr6g%7D%2F%E8%84%9A%E6%9C%AC%E6%96%87%E4%BB%B6%2Fproxypool%2Fsource.yaml

下载好文件后重命名,并设置proxypool为755权限

image.png

添加反向代理

image.png

运行程序

ssh启动进入/proxy

nohup ./proxypool -c config.yaml 1>>run.log 2>>run.log &

image.png

访问成功
image.png

如果要更新配置

cd /proxy
ps -ef
kill -s 9 4383  # 每个人的 PID 是不一样的

image.png

再次启动使用启动命令即可

nohup ./proxypool -c config.yaml 1>>run.log 2>>run.log &

原文链接

标签:proxypool,centos,E6%,yaml,proxy,install,config,搭建
来源: https://blog.csdn.net/qq_38162031/article/details/122642443