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:

RequirementMinimum
Operating SystemCentOS 7+, Ubuntu 18.04+, or Debian 10+
CPU / RAM2 cores / 4 GB (4 cores / 8 GB recommended)
Disk Space40 GB free
Dockerversion 20.10 or later
NetworkPublic 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:

  1. Detects your OS and Docker version
  2. Pulls the latest Remok container images
  3. Initializes configuration files and the database
  4. Starts all services
  5. 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:

  1. Change the administrator password
  2. Configure your company's basic information and Enterprise Code
  3. Connect your identity source (LDAP / AD or add local users)
  4. Create your first access policy
  5. 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