Sidebar
0 votes
37 views
by jake-b-8126 (200 points)
I would like to run qie on my linux server under the user "qie" instead of root. How do i go about acheiving this?

1 Answer

+1 vote
 
Best answer

If you're using a distribution that uses systemd, start by adding the user to the system with the appropriate user and group permissions.  Stop the QIE service, then modify the QIE systemd unit file (/etc/systemd/system/qie.service) and add the below bolded lines to the [Service] section:

 

[Service]
Type=simple
User=qie
Group=qie

Note: Make sure the user has full rights to the qie install folder (by default, /java/qie) as it will need to read and write files in that folder. 

Save the systemd unit file, then start the QIE service.

 

by jon-t-7005 (8.3k points)
edited by nathan-c-4426
...