Linux running services as user

Bash init — start service under specific user

I am trying to create an init script in bash (Ubuntu) that starts a service under a specific user. Is there a better way to do that other than this?

4 Answers 4

Ubuntu uses start-stop-daemon which already supports this feature.

Use the skeleton file from /etc/init.d:

sudo cp /etc/init.d/skeleton /etc/init.d/mynewservice

Edit mynewservice appropriately.

Add the following parameter to the lines that call start-stop-daemon:

start-stop-daemon —start —quiet —pidfile $PIDFILE —exec $DAEMON —test > /dev/null \

start-stop-daemon —start —quiet —chuid someuser:somegroup —pidfile $PIDFILE —exec $DAEMON —test > /dev/null \

Finally, register your service and start it:

update-rc.d mynewservice defaults 99 && service mynewservice start

More info about other options for start-stop-daemon here

Alternatively, you can use the daemon function defined in your /etc/init.d/functions file:

If you look into its syntax you can do other things like defining PID file location, setting nice level, and whatnot. It’s otherwise really useful for starting up services as daemons. Services started up with daemon can easily be terminated by another functions function, killproc .

Thanks. The problem I’m running into is that it’s a process that needs to be run from a particular directory but the process itself isn’t actually in that directory.

You can create a script under /etc/init.d/ say your_service_name, with minimal contents

Provide appropriate permission to the script. Now use update-rc.d command in the required /etc/rc.d directory to create a soft link for your script so that the script is run when system starts with the mentioned run level.
Please refer scripts under /etc/init.d/ for reference & please go through /etc/init.d/README for more details regarding writing the script. Man page for update-rc.d will also help to find out about the usage of update-rc.d . This definitely works on Ubuntu machine I use, but I’m guessing that this facility will be available across distros.
Hope this helps!

Источник

Running Systemd Service as User Rather Than Root

systemd noob, here. I have inotifywait watching a folder and running a script when conditions are met. I set up a systemd service file to run this script as a daemon on startup, but it runs the script as root. I am wondering if there is a way to get the service to run as the current user (rather than specifying a user in the service file) so that $HOME is correct for the current user, allowing me to add as many users as I want, with all users having access to the script. I have read about systemctl —user , and enable-linger , but I honestly don’t know the best solution. Ultimately, I want the service to recognize the current user and run the local script as the user with $HOME intact.

Читайте также:  400 Bad Request

1 Answer 1

Short answer

I think what you want to do is:

  1. Move or link the shell script somewhere that all users can access, and make sure each user has permission to execute the script.
  2. For each user, create a user service (the kind that uses systemctl —user ) that runs that script at boot time.

Each user service will be identical; the point is just that each user has their own service running for them at boot, linked to their «$»/.config/systemd/user/ directory, and systemctl —user enable ‘d for them.

User services run as their user (not root), so each service will run as its corresponding user and inherit that user’s «environment». That environment will be passed to any processes the service spawns — namely, your shell script, where $HOME will expand to something like «/home/foo» when the foo user’s service runs the script. When bar’s service runs it, $HOME will expand to «/home/bar», and so on.

Further info

This is some general (and some niche) information which might help make some sense of what’s going on.

First, there are system services and user services.

System services are the «default» kind of service, and the service you set up is probably one of these.

  • Their service files are linked in /etc/systemd/system/ .
  • They run as root by default. ⚠️ (As a result, they have root permissions!)
  • Their spawned processes inherit NO environment (e.g., in a shell script run by the service, $HOME will actually be empty — «»).
  • They’re controlled with systemctl .

User services are explicitly associated with the user who made them.

  • Their service files are linked in «$»/.config/systemd/user/ (you might have to create this directory if it doesn’t exist).
  • They run as the user who made them by default (with that user’s permissions, not root permissions).
  • Their spawned processes inherit that user’s enviornment (e.g., in a shell script run by the service, $HOME will expand to /home/foo if a user named foo made the service).
  • They’re controlled with systemctl —user
  • They also terminate when that user’s session ends (this can be overriden by the enable-linger command you read about, but I don’t think that’s relevant to your problem here).

Ultimately, I want the service to recognize the current user and run the local script as the user with $HOME intact.

This sentence, in isolation, asks how to import the current user’s environment (e.g., variables like $HOME ) into a script that gets executed by a service.

There are many ways to import environment, from arguments to the commands that start the service to systemd settings to options set in the service files.

1. Simply re-declaring environmental variables

This is the most boneheaded way to do it.

If a user named foo wants $HOME to expand to «/home/foo» and $BARHOME to expand to «/home/bar», they can put this at the top of the script:

HOME=/home/foo BARHOME=/home/bar 

Easy! And a maintenance nightmare when a directory or file path changes and all of the scripts you did this with need to be updated to mirror the change.

Читайте также:  Как проверить лицензию linux

2. Using the User= and Group= options in system services

I take it that this is what you referred to by «specifying a user in the service file» in:

I am wondering if there is a way to get the service to run as the current user (rather than specifying a user in the service file)

For system services, which run as root and have NO default environment, a foo user can put this section in the service’s .service file:

This will cause the system service to run as foo (not root), with foo’s permissions (no longer root’s permissions), and with foo’s environment. So, in a shell script executed by the service, $HOME will expand to «/home/foo», $USER will expand to «foo», and so on.

If you’re wondering, using User=root and Group=root only has the effect of importing root’s environment ( $HOME will expand to «/root» instead of «», $USER will expand to «root», etc.); the system service still runs as root, with root permissions, as it does by default.

NOTE: These options are only allowed for system services. If a user service has these options in its [Service] section, it will error out when run. User services are all about being explicitly bound to a user, so they don’t support running as a different user than the user who made and ran them.

The downside with importing a user’s environment to a system service this way is that root permissions are lost, being replaced with that user’s permissions. (If the service didn’t need root permissions, no harm done, although it might as well be a user service in that case.)

Another downside is it doesn’t at all assist with the «multi-user» aspect you’re going for. (Again, making one user service for each user is probably the way to go for that.)

3. Using systemd’s DefaultEnvironment variable

This is the way I import environmental variables. It might be a little weird, but it has two advantages:

  1. It works independently of the User= and Group= options, decoupling a service’s environment from its user.
  2. It allows a user (e.g., root) to use their environmental variables simultaneously with a different user’s (e.g., foo’s) environmental variables.

We assume that the foo user declares all their environmental variables in their .profile (as is tradition). As an added twist, the foo user hardcodes their home directory in a variable named $UHOME . So, in /home/foo/.profile , we have:

Similarly, $UBIN , where foo keeps binaries, can be defined in /home/foo/.profile like this:

We’ll see what this gets us in a second.

In /etc/systemd/system.conf , uncomment the DefaultEnvironment variable and, in it, declare an environmental variable named $UPROFILE hardcoded to reference foo’s .profile :

DefaultEnvironment="UPROFILE=/home/foo/.profile" 

Now, in any services’ shell scripts, even system services’, we can put this at the top of the script:

Читайте также:  Huawei pc manager linux

Even when a system service, running as root, executes this script, foo’s .profile will be sourced, and so foo’s environmental variables will be loaded in, even alongside root’s environmental variables (assuming the system service uses User=root and Group=root to inherit root’s environment). So, in the script, $HOME will expand to root’s home («/root»), while $UHOME will expand to foo’s home («/home/foo»). That’s what naming the variable $UHOME in foo’s .profile bought us; it won’t collide with root’s $HOME environmental variable!

We don’t have to worry about what user runs the service or what their environmental variables are! foo’s environmental variables are always correct, so we always find foo’s stuff. And, since foo’s environmental variables are defined in one place (foo’s .profile ), changes to them there are automatically reflected in system scripts as they resource foo’s .profile — no script maintenance necessary.

This is nice for having your non-root user’s environment in a system service script running as root.

However, this is completely unrelated to your question, which was:

I am wondering if there is a way to get the service to run as the current user (rather than specifying a user in the service file) so that $HOME is correct for the current user, allowing me to add as many users as I want, with all users having access to the script.

. If you can get away with this and don’t mind how zany it is, you could have each user use their own environmental variable naming scheme in their .profile s, and environment inclusion method #3 here could be used to do whatever you want to do on boot for each user when just one user boots in.

E.g., user foo can define $FOOHOME in their .profile ; user bar can define $BARHOME in their .profile ; and so on.

In /etc/systemd/system.conf , you could reference each user’s .profile :

DefaultEnvironment="FOOPROFILE=/home/foo/.profile" "BARPROFILE=/home/bar/.profile" 

Then, at the top of the shell script, have:

# Get all users' env vars. source "$" source "$" 

Now, when a user boots in and the system service runs that script when a user boots in, $FOOHOME will expand to «/home/foo», $BARHOME will expand to «/home/bar», and so on.

BUT THAT’S JUST CRAZY FOOD FOR THOUGHT; what it sounds like you actually want is what I said in the Short answer section.

If you want a service to run when any user boots in and have $HOME expand to that user’s home directory in the shell script run by the service, you don’t have to mess with DefaultEnvironment . It’s far simpler to create a user service for each user, and have the user services all run that script, which is in a location they can all access.

Источник

Оцените статью
Adblock
detector