Run the Management Console service as a different user
By default, the Management Console service runs under the Local System account on Windows and rslconsole user on Linux. You can configure it to run under the current user or a different account.
Windows
To run the Management Console service as a different user on Windows:
- Grant Full control permissions to the user account on the storage folder and the installation folder.
- Open the Services management console (
services.msc). - Locate and right-click the Resilio Management Console service, then select Stop.
- Right-click the Resilio Management Console service again and select Properties.
- In the Log On tab, select This account and enter the credentials of the user account you want the service to run under, then click OK.
- Click Start to start the service with the new user account.
Linux
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 -
Change the ownership of the storage folder to the user and group you specified in the
override.conffile:sudo chown -R resilioConsoleService:resilioConsoleService /var/opt/resilio-connect-management-console -
Start the Management Console service:
sudo systemctl start resilio-connect-management-console