Virola Client Setup
Install the Virola Client on your machine.
Launch the client and enter the following login details:
- Server Host:
<SERVER_IP> - Server Port: 7777
- Nom d'utilisateur :
admin - Mot de passe :
admin
Click Login to access the server.
Fichiers et répertoires importants
- Répertoire des applications :
/root/virola-server - Fichier Docker Compose :
/root/virola-server/docker-compose.yml - Persistent data storage:
/root/virola-server/virola-storage
Gestion des services
Vérifier le statut :
docker compose -f /root/virola-server/docker-compose.yml ps
Afficher les journaux :
docker compose -f /root/virola-server/docker-compose.yml logs -f
Redémarrer :
docker compose -f /root/virola-server/docker-compose.yml restart
Remarques
- All data is stored in
/root/virola-server/virola-storageand persists across container restarts. - Ensure TCP and UDP port 7777 are open.
- Docker handles automatic restarts via
restart: unless-stopped.