diff --git a/README.md b/README.md index b9690d7..c309139 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ - TLS证书 【**/etc/v2ray-agent/tls**】 - Nginx配置文件 【**/etc/nginx/conf.d/alone.conf**】、Nginx伪装博客目录 【**/usr/share/nginx/html**】 +## [脚本常用命令](https://github.com/mack-a/v2ray-agent/blob/master/documents/common_commands.md) ## 安装脚本 ``` diff --git a/documents/common_commands.md b/documents/common_commands.md new file mode 100644 index 0000000..c725b4f --- /dev/null +++ b/documents/common_commands.md @@ -0,0 +1,53 @@ +# 常用命令 +## 启动脚本 +``` +vasma +``` + +## 服务管理 +### Xray-core、v2ray-core、trojan-go +- 重启 +``` +# xray +systemctl restart xray +# v2ray +systemctl restart v2ray +# trojan-go +systemctl restart trojan-go +``` + +- 启动 +```` +# xray +systemctl start xray +# v2ray +systemctl start v2ray +# trojan-go +systemctl start trojan-go +```` + +- 关闭 +``` +# xray +systemctl stop xray +# v2ray +systemctl stop v2ray +# trojan-go +systemctl stop trojan-go +``` + +### nginx +- 重启 +``` +nginx -s reload +``` + +- 启动 +```` +nginx +```` + +- 关闭 +``` +nginx -s stop +``` \ No newline at end of file