Files
NationsGlory_ServeurBuild_Red/QUICKSTART.md
y.campiontrebouta@innotexnas.ovh d5e57eec7b feat: Configuration FLAT + Documentation RCON complète
- Configure monde en FLAT par défaut
- Active mode créatif (gamemode=1)
- Accepte comptes crack (online-mode=false)
- Ajoute CONFIGURATION.md avec guide RCON détaillé
- Améliore README.md avec navigation
- Crée INDEX.md pour navigation docs
- Nettoie docker-compose.yml
2026-02-04 00:05:23 +01:00

84 lines
1.8 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ⚡ Démarrage Rapide - NationsGlory 1.6.4
## 🎯 Installation en 3 minutes
### 1⃣ Cloner le projet
```bash
git clone <votre-repo> nationsglory-server
cd nationsglory-server
```
### 2⃣ Configurer RCON (recommandé)
```bash
# Définir un mot de passe RCON sécurisé
sed -i 's/^rcon.password=.*/rcon.password=MonMotDePasseSecurise/' server.properties
```
### 3⃣ Démarrer le serveur
```bash
docker-compose up -d
```
### 4⃣ Vérifier le démarrage
```bash
# Voir les logs (sans spam Forge)
docker logs -f mc-nationsglory 2>&1 | sed -u '/^>/d'
# Attendre "Done" (environ 1-2 minutes)
```
### 5⃣ Se connecter
- **Adresse**: `IP_SERVEUR:25565`
- **Version**: Minecraft 1.6.4 + Forge 9.11.1.965
- **Mods**: Copier depuis `/mods/` du serveur
---
## ✅ Checklist post-installation
- [ ] Serveur démarre sans erreur
- [ ] Monde en mode FLAT
- [ ] Mode créatif activé
- [ ] Comptes crack acceptés
- [ ] RCON configuré
- [ ] OP attribué aux admins
---
## 🎮 Commandes essentielles
```bash
# Démarrer
docker-compose up -d
# Arrêter
docker-compose down
# Redémarrer
docker-compose restart
# Logs sans spam
docker logs -f mc-nationsglory 2>&1 | sed -u '/^>/d'
# Donner OP (remplacer IP_SERVEUR)
docker exec mc-nationsglory rcon-cli \
--host IP_SERVEUR \
--port 25575 \
--password VotreMotDePasse \
"op NomJoueur"
```
---
## 🚨 Problèmes courants
| Erreur | Solution |
|--------|----------|
| "Failed to verify username" | `docker exec mc-nationsglory sed -i 's/online-mode=true/online-mode=false/' /data/server.properties && docker-compose restart` |
| Monde pas FLAT | `docker-compose down && sudo rm -rf world && docker-compose up -d` |
| RCON "authentication failed" | Vérifier mot de passe: `grep rcon.password server.properties` |
---
**📚 Documentation complète**: [CONFIGURATION.md](CONFIGURATION.md)