diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-05 10:23:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 10:23:30 +0200 |
commit | e1be837a4ff149e00ff6af9e71cf9ea625e33e6f (patch) | |
tree | 589b880f01b28eb1925307eb6564b12f14e15bd8 | |
parent | 01aad516e012fe46179e053addd7a8a84788228b (diff) | |
parent | fa3986125e99c8d2fe4458cd1d5773964b14521f (diff) | |
download | podman-e1be837a4ff149e00ff6af9e71cf9ea625e33e6f.tar.gz podman-e1be837a4ff149e00ff6af9e71cf9ea625e33e6f.tar.bz2 podman-e1be837a4ff149e00ff6af9e71cf9ea625e33e6f.zip |
Merge pull request #6082 from TomSweeneyRedHat/dev/tsweeney/trub1
[CI:DOC] Add linger to troubleshooting
-rw-r--r-- | troubleshooting.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/troubleshooting.md b/troubleshooting.md index ea85df58a..14d1a867e 100644 --- a/troubleshooting.md +++ b/troubleshooting.md @@ -517,3 +517,23 @@ The runtime uses `setgroups(2)` hence the process looses all additional groups the non-root user has. If you use the `crun` runtime, 0.10.4 or newer, then you can enable a workaround by adding `--annotation io.crun.keep_original_groups=1` to the `podman` command line. + +### 22) A rootless container running in detached mode is closed at logout + +When running a container with a command like `podman run --detach httpd` as +a rootless user, the container is closed upon logout and is not kept running. + +#### Symptom + +When logging out of a rootless user session, all containers that were started +in detached mode are stopped and are not kept running. As the root user, these +same containers would survive the logout and continue running. + +#### Solution + +When systemd notes that a session that started a Podman container has exited, +it will also stop any containers that has been associated with it. To avoid +this, use the following command before logging out: `loginctl enable-linger`. +To later revert the linger functionality, use `loginctl disable-linger`. + +LOGINCTL(1), SYSTEMD(1) |