Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.23 KB

creating-the-first-administrator.md

File metadata and controls

37 lines (31 loc) · 1.23 KB
description
Creating your first admin user and user group

Admin Account Creation

After deploying the server, the first user to register becomes the administrator, with the power to set other users as administrators.

In case your server has no administrators, you can create the first admin account by defining the environment variables INITIAL_USER, ADMIN_PASS and ADMIN_EMAIL once.

export ROOT_URL=http://your-host-name.com-as-accessed-from-internet:3000/
export MONGO_URL=mongodb://localhost:27017/rocketchat
export PORT=3000
export ADMIN_USERNAME=admin
export ADMIN_PASS=supersecret
export [email protected]
node main.js

Installing with the docker compose file, you can also specify the INITIAL_USER, ADMIN_USERNAME and ADMIN_PASSWORD directly.

    environment:
      - PORT=3000
      - ROOT_URL=http://localhost:3000
      - MONGO_URL=mongodb://mongo:27017/rocketchat
      - MONGO_OPLOG_URL=mongodb://mongo:27017/local
      - INITIAL_USER=yes
      - ADMIN_USERNAME=admin
      - ADMIN_NAME=Admin
      - [email protected]
      - ADMIN_PASS=supersecret
      - OVERWRITE_SETTING_Show_Setup_Wizard=completed
      - REG_TOKEN=${REG_TOKEN}
#       - MAIL_URL=smtp://smtp.emai