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.