Quick Start
Deploy Remok in under 5 minutes with a single command. Minimum time to a running gateway.
💡 Remok can be deployed in as little as 2 minutes. Follow this guide to get started.
Prerequisites
Before running the installer, ensure your server meets these requirements:
| Requirement | Minimum |
|---|---|
| Operating System | CentOS 7+, Ubuntu 18.04+, or Debian 10+ |
| CPU / RAM | 2 cores / 4 GB (4 cores / 8 GB recommended) |
| Disk Space | 40 GB free |
| Docker | version 20.10 or later |
| Network | Public IP address or accessible domain name |
One-Command Installation
Run the following command on your server to start the automated installer:
curl -sSL https://get.feijiangkeji.com | bash
The installer automatically:
- Detects your OS and Docker version
- Pulls the latest Remok container images
- Initializes configuration files and the database
- Starts all services
- Prints the admin console URL and initial password
✅ After installation, open
https://YOUR_SERVER_IP:8443 to access the admin console.First Login
After installation, sign in to the admin console with:
- Username:
admin - Password: the random password printed by the installer
⚠️ Change the default admin password immediately after your first login.
Next Steps
Once installed, follow this recommended sequence:
- Change the administrator password
- Configure your company's basic information and Enterprise Code
- Connect your identity source (LDAP / AD or add local users)
- Create your first access policy
- Download the client and test your first connection
Common Issues
Port 8443 is already in use
# Specify a custom port at install time
curl -sSL https://get.feijiangkeji.com | bash -s -- --port 9443
Check service status
# View all running containers
docker compose ps
# Stream service logs
docker compose logs -f
Uninstall
# Stop and remove containers
docker compose down
# Remove containers AND all data volumes
docker compose down -v