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
- 用户名:
admin - 密码:
admin
Click Login to access the server.
重要文件与目录
- 应用程序目录:
/root/virola-server - Docker Compose 文件:
/root/virola-server/docker-compose.yml - Persistent data storage:
/root/virola-server/virola-storage
服务管理
检查状态:
docker compose -f /root/virola-server/docker-compose.yml ps
查看日志:
docker compose -f /root/virola-server/docker-compose.yml logs -f
重启:
docker compose -f /root/virola-server/docker-compose.yml restart
注释
- 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.