欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

使用KubeAdm部署Kubernetes集群——如何访问google代码仓库及Yum源

程序员文章站 2022-05-28 20:40:41
一、申请国外服务器,部署*服务 1、下载并创建配置文件 2、打开防火墙对应端口 3、设置自启动 二、安装客户端 三、安装socket5转http代理工具 四、启用或停用全局http/https代理 五、使用更灵活的代理方式 用法:在需要代理的命令前加上 proxychains4 , ......

一、申请国外服务器,部署*服务

1、下载并创建配置文件

wget https://github.com/*/*-go/releases/download/1.2.1/*-server.tar.gz
tar -zxf *-server.tar.gz
cd *-server
cat > config.json <<eof
{
    "server":"127.0.0.1",
    "server_port":8888,
    "local_port":1080,
    "local_address":"127.0.0.1",
    "password":"yourpassword",
    "method": "aes-256-cfb",
    "timeout":600
}
eof

2、打开防火墙对应端口

systemctl status firewalld
firewall-cmd --permanent --zone=public --add-port=8888/tcp
firewall-cmd --permanent --zone=public --add-port=8888/udp
firewall-cmd --reload

3、设置自启动

cat > /lib/systemd/system/*.service <<eof
[unit]
description=*server
after=network.target

[service]
execstart=/*-server/*-server -c /*/config.json  >>*-`date +%y-%m`.log &
execstop=kill -9 `ps -au | grep -v grep |grep *-server | awk '{print $2}'`  >>*-`date +%y-%m`.log

[install]
wantedby=multi-user.target
eof

systemctl start *
systemctl enable *

二、安装客户端

yum install python-pip
pip install *
pip install --upgrade pip
pip install *
cat > /etc/*.json  <<eof
{
"server":"yourserver",
"server_port":8888,
"local_address":"127.0.0.1",
"local_port":1080,
"password":"yourpassword",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false
}
eof

sslocal -c /etc/*.json -d start
#sslocal -c /etc/*.json -d stop

三、安装socket5转http代理工具

yum install privoxy
echo forward-socks5 / 127.0.0.1:1080 . >> /etc/privoxy/config
systemctl restart privoxy

四、启用或停用全局http/https代理

export http_proxy=http://localhost:8118
export https_proxy=https://localhost:8118

#unset http_proxy
#unset https_proxy

五、使用更灵活的代理方式

yum -y install gcc
wget http://ftp.barfooze.de/pub/sabotage/tarballs/proxychains-ng-4.13.tar.xz
tar -xvf proxychains-ng-4.13.tar.xz
cd proxychains-ng-4.13
./configure 
make && make install
cp ./src/proxychains.conf /etc/proxychains.conf 
vi /etc/proxychains.conf 
#将socks4 127.0.0.1 9095改为socks5 127.0.0.1 1080

用法:在需要代理的命令前加上 proxychains4 ,如:proxychains4 curl www.google.com