Run the Management Console service as a different user
By default, the Management Console service runs under the rslconsole user. You can configure it to run under the current user or a different account.
Run the Management Console service as the current user
To run the Management Console service as the current user:
-
Check the service's status, and if it's running, stop it:
sudo systemctl stop resilio-connect-management-console -
Start the service as the current user:
sudo systemctl --user start resilio-connect-management-console
Run the Management Console service as a different user
To run the Management Console service as a different user on Linux distributions with the systemd service manager, proceed as follows:
-
(Optional) Create a user and group to run the Resilio Management Console service:
$ sudo groupadd -r resilioConsoleService $ sudo useradd -g resilioConsoleService -r -m -s /sbin/nologin resilioConsoleService -
Stop the Resilio Management Console service:
sudo systemctl stop resilio-connect-management-console -
Navigate to
/etc/systemd/system/resilio-connect-management-console.service.d(create the directory if it doesn't exist), and create theoverride.conffile. -
Edit the
override.conffile and add the following:[Service] User=resilioConsoleService Group=resilioConsoleService -
Reload the unit files:
sudo systemctl daemon-reload -
Start the Management Console service:
sudo systemctl start resilio-connect-management-console