Skip to content

Common Issues

If you are deploying bots, ensure that in bot’s env or config you’re using local mode. In that case you can simply enter http://remnawave:3000 to avoid problems with accessing panel.

Section titled “Lost cookie-header to access the panel ”🎉 New

If you’ve lost cookie-header to access the panel, you can retrieve it by following these steps:

  1. Navigate to the Remnawave directory

    Terminal window
    cd /opt/remnawave
  2. Open the nginx configuration in a text editor:

    Terminal window
    nano nginx.conf # or any other editor
  3. In the beginning, we encounter sections about cookie-paths to the panel:

    nginx.conf
    map $arg_rEmnaprx $set_cookie_header {
    "aBCDefgh" "rEmnaprx=aBCDefgh; Path=/; HttpOnly; Secure; SameSite=Strict; Max-Age=31536000";
    default "";
    }
  4. Copy the value rEmnaprx=aBCDefgh from the map section and use it as the cookie-path to the panel.

    Thus, the link will look like this:

    https://domain.com/auth?/login?rEmnaprx=aBCDefgh

In case you’ve installed script in different terminal (e.g. bash) and now e.g. zsh can’t execute the rr command you need to:

  1. Open zsh config (root or user or even both)

    Terminal window
    nano ~/.zsh
  2. Add the following strings

    Terminal window
    source /home/YOURUSERNAME/.bash_profile
  3. Restart your terminal or run the command

    Terminal window
    exec zsh

Feel free to report any related to our project issues in the GitHub repository or Telegram chat.