v2ray-agent/documents/common_commands.md

59 lines
554 B
Markdown
Raw Normal View History

2020-12-07 16:54:09 +08:00
# 常用命令
## 启动脚本
```
vasma
```
## 服务管理
### Xray-core、v2ray-core、trojan-go
- 重启
```
# xray
systemctl restart xray
2020-12-07 16:56:24 +08:00
2020-12-07 16:54:09 +08:00
# v2ray
systemctl restart v2ray
2020-12-07 16:56:24 +08:00
2020-12-07 16:54:09 +08:00
# trojan-go
systemctl restart trojan-go
```
- 启动
````
# xray
systemctl start xray
2020-12-07 16:56:24 +08:00
2020-12-07 16:54:09 +08:00
# v2ray
systemctl start v2ray
2020-12-07 16:56:24 +08:00
2020-12-07 16:54:09 +08:00
# trojan-go
systemctl start trojan-go
````
- 关闭
```
# xray
systemctl stop xray
2020-12-07 16:56:24 +08:00
2020-12-07 16:54:09 +08:00
# v2ray
systemctl stop v2ray
2020-12-07 16:56:24 +08:00
2020-12-07 16:54:09 +08:00
# trojan-go
systemctl stop trojan-go
```
### nginx
- 重启
```
nginx -s reload
```
- 启动
````
nginx
````
- 关闭
```
nginx -s stop
```