Skip to content

Commit

Permalink
Update docs and server notes
Browse files Browse the repository at this point in the history
  • Loading branch information
digisomni committed Sep 27, 2023
1 parent cdada22 commit 744f104
Show file tree
Hide file tree
Showing 3 changed files with 220 additions and 191 deletions.
16 changes: 13 additions & 3 deletions docs/host/server_setup/linux-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ You can run these same commands on an existing Vircadia domain to upgrade it if

### Ubuntu Server 20.04 LTS (2022.1.1 Selene)

#### Download
```sh
wget https://github.com/vircadia/vircadia-native-core/releases/download/2022.1.2/vircadia-server_1750-20230922-50b2485-0ubuntu1-1_amd64.deb
```
#### Update & Install
```sh
sudo apt-get update && sudo apt-get install ./vircadia-server_1750-20230922-50b2485-0ubuntu1-1_amd64.deb
```

### Unlisted Distribution

If you do not see your distribution listed here, you may compile your own server from source with the [Linux build guide](https://github.com/vircadia/vircadia/blob/master/BUILD_LINUX.md).
If you do not see your distribution listed here, you may compile your own server from source with the [Linux build guide](https://github.com/vircadia/vircadia-native-core/blob/master/BUILD_LINUX.md).

## Configuration

Expand Down Expand Up @@ -52,8 +56,14 @@ The <code>vircadia-server<span>@</span>default.target</code> service is the only

Logs can be accessed by running the following commands:

* Domain server: ```journalctl -u vircadia-domain-server@default.service```
* Assignment client: ```journalctl -u vircadia-assignment-client@default.service```
* Domain server:
```sh
journalctl -u vircadia-domain-server@default.service
```
* Assignment client:
```sh
journalctl -u vircadia-assignment-client@default.service
```

The domain server and assignment client services log a large amount of data to their service journals. Checking their logs (via <code>systemctl status</code>) is a good way to ensure they are operating properly.

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "2.1.0",
"@docusaurus/preset-classic": "2.1.0",
"@docusaurus/core": "^2.4.3",
"@docusaurus/preset-classic": "^2.4.3",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.2.1",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.1.0"
"@docusaurus/module-type-aliases": "^2.4.3"
},
"browserslist": {
"production": [
Expand Down
Loading

0 comments on commit 744f104

Please sign in to comment.