feat(文档): 添加常用命令

pull/534/merge
mack-a 2020-12-07 16:54:09 +08:00
parent 8ab6c24ee4
commit 71c4e1f0b5
2 changed files with 54 additions and 0 deletions

View File

@ -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)
## 安装脚本
```

View File

@ -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
```