2020-11-25 05:26:10 +00:00
|
|
|
# Xray-install
|
|
|
|
|
|
|
|
Bash script for installing Xray in operating systems such as CentOS / Debian / OpenSUSE that support systemd.
|
|
|
|
|
|
|
|
[Filesystem Hierarchy Standard (FHS)](https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard)
|
|
|
|
|
|
|
|
```
|
2021-02-17 09:38:53 +00:00
|
|
|
installed: /etc/systemd/system/xray.service
|
|
|
|
installed: /etc/systemd/system/xray@.service
|
|
|
|
|
2020-11-25 05:26:10 +00:00
|
|
|
installed: /usr/local/bin/xray
|
|
|
|
installed: /usr/local/etc/xray/*.json
|
|
|
|
|
|
|
|
installed: /usr/local/share/xray/geoip.dat
|
|
|
|
installed: /usr/local/share/xray/geosite.dat
|
|
|
|
|
|
|
|
installed: /var/log/xray/access.log
|
|
|
|
installed: /var/log/xray/error.log
|
|
|
|
```
|
|
|
|
|
2021-02-17 09:38:53 +00:00
|
|
|
Notice: Xray will NOT log to `/var/log/xray/*.log` by default. Configure `"log"` to specify log files.
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
## Basic Usage
|
2020-11-25 05:26:10 +00:00
|
|
|
|
2021-02-24 13:16:51 +00:00
|
|
|
**Install & Upgrade Xray-core and geodata with `User=nobody`, but will NOT overwrite `User` in existing service files**
|
2020-11-25 05:26:10 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install
|
2020-11-25 05:26:10 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
**Update geoip.dat and geosite.dat only**
|
2020-11-25 05:26:10 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install-geodata
|
2020-12-27 10:50:30 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
**Remove Xray, except json and logs**
|
2020-12-27 10:50:30 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ remove
|
2020-12-27 10:50:30 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
## Advance
|
|
|
|
|
2022-06-26 00:59:09 +00:00
|
|
|
**Install & Upgrade Xray-core to a pre-release version**
|
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install --beta
|
2022-06-26 00:59:09 +00:00
|
|
|
```
|
|
|
|
|
2023-08-02 07:09:45 +00:00
|
|
|
**Install & Upgrade Xray-core and geodata with `logrotate`, `$time` can be in the format of 12:34:56**
|
2023-07-31 03:41:30 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install --logrotate $time
|
2023-07-31 03:41:30 +00:00
|
|
|
```
|
|
|
|
```
|
|
|
|
installed: /etc/systemd/system/logrotate@.service
|
|
|
|
installed: /etc/systemd/system/logrotate@.timer
|
|
|
|
|
|
|
|
installed: /etc/logrotate.d/xray
|
|
|
|
```
|
|
|
|
|
2021-02-24 13:16:51 +00:00
|
|
|
**Install & Upgrade Xray-core and geodata with `User=root`, which will overwrite `User` in existing service files**
|
2020-12-27 10:50:30 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install -u root
|
2020-12-27 10:50:30 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
**Install & Upgrade Xray-core without geodata**
|
2020-12-27 10:50:30 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install --without-geodata
|
2020-11-25 05:26:10 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
**Remove Xray, include json and logs**
|
2020-11-25 05:26:10 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ remove --purge
|
2020-12-27 10:50:30 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 12:53:39 +00:00
|
|
|
## More Usage
|
2020-12-27 10:50:30 +00:00
|
|
|
|
|
|
|
```
|
2023-08-13 13:24:48 +00:00
|
|
|
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ help
|
2020-11-25 05:26:10 +00:00
|
|
|
```
|
2021-01-13 19:30:02 +00:00
|
|
|
|
|
|
|
## Stargazers over time
|
|
|
|
|
|
|
|
[![Stargazers over time](https://starchart.cc/XTLS/Xray-install.svg)](https://starchart.cc/XTLS/Xray-install)
|