Linux安装V2Ray CentOS版本
super
2021-03-13 18:15
44068
更改权限:
su
1)安装unzip
yum install -y unzip zip
2)下载官方的安装脚本
# 官方脚本
wget https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh --user-agent="Mozilla/5.0"
如果报错 Unable to establish SSL connection. 安装openssl
yum install openssl
查看目录,install-release.sh为我们下载的安装脚本
ls
3)执行安装脚本
bash install-release.sh
4)开启V2Ray
systemctl enable v2ray
systemctl start v2ray
systemctl status v2ray
绿色或者黄色小灯亮起(running)表示V2Ray已成功运行
5)修改V2Ray配置文件
vi /usr/local/etc/v2ray/config.json
基本配置如下:
{
"inbound": {
"port": 10086, // 监听端口号,建议更改
"protocol": "vmess", // 通信协议,建议vmess
"settings": {
"clients": [
{
"id": "54f0f20d-7ff9-4dbd-ada0-fa1e27622d85", // UUID识别码,建议使用V2Ray(客户端)重新生成
"level": 1,
"alterId": 64
}
]
}
},
"streamSettings": {
"network": "tcp"
},
"outbound": {
"protocol": "freedom",
"settings": {}
},
"outboundDetour": [
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}
]
}
6)重启V2Ray以重载配置文件
systemctl stop v2ray
systemctl start v2ray
7)使用V2RayN客户端测试连接
github项目地址 (可随时关注更新)
https://github.com/2dust/v2rayN/releases
或者直接下载
https://github.com/2dust/v2rayN/releases/download/4.9/v2rayN-Core.zip
填写完成点击确定。鼠标单击选中新加的服务器(记得设置别名,便于区分),单击鼠标右键 设置为活动服务器 (或者点击Enter键)
右下角找到 V2Ray图标
系统代理 - 自动配置系统代理 (新版本:Http代理 - 开启PAC,并自动配置系统代理(PAC模式))
测试连接是否成功
注:如果无法连接,请进入服务商控制台检查网络安全组(10086)端口是否放行(本文使用为10086端口,如果使用了其他的端口,那么只需上下文一致即可)
注:本教程仅供学习交流使用,请勿用于非法用途!
#5
#6
#7
#8
@ #5 00:5部配置完怎么保存退出啊
#9
#10
#11
#12
@ #11 yu:卡的问题解决了,服务端也成功了,但是客户端好像不行,浏览器要配置什么嘛
#13
@ #9 yu:卡在了Downloading verification file for V2Ray archive: https://github.com/v2fly/v2ray-core/releases/download/v4.45.2/v2ray-linux-64.zip.dgst
#14