Actualiser README.md
This commit is contained in:
parent
73ffdd0d03
commit
8050f4ef8b
41
README.md
41
README.md
@ -23,7 +23,46 @@ sudo ./mangosd
|
||||
account create <username> <password>
|
||||
```
|
||||
|
||||

|
||||
[autres commandes](https://github.com/dkpminus/mangos-gm-commands)
|
||||
|
||||
## CRÉER DES SERVICES POUR LANCER LE SERVEUR
|
||||
|
||||
Fichiers service à créer dans `/etc/systemd/system/`
|
||||
|
||||
- Realmd service:
|
||||
```bash
|
||||
[Unit]
|
||||
Description=VMaNGOS Realmd Service
|
||||
After=network.target mariadb.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=wow # <- ton utilisateur normal (pas root)
|
||||
WorkingDirectory=/home/wow/vmangos/bin
|
||||
ExecStart=/home/wow/vmangos/bin/realmd
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
```
|
||||
|
||||
- Mangosd service:
|
||||
```bash
|
||||
[Unit]
|
||||
Description=VMaNGOS World Server
|
||||
After=network.target mariadb.service realmd.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=wow # <- ton utilisateur normal
|
||||
WorkingDirectory=/home/wow/vmangos/bin
|
||||
ExecStart=/home/wow/vmangos/bin/mangosd
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
```
|
||||
|
||||
|
||||
## SE CONNECTER AU SERVEUR
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user