diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-10 13:37:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 13:37:59 -0500 |
commit | 6d2b54a731cf5ac9a7e760709748ee96a636d65e (patch) | |
tree | 8259f622634db96acd3bea2c2309c1405c1fe45d | |
parent | 0144413a5a0c07f8df7e089ce976ec3afa7fb5e9 (diff) | |
parent | a0b38c071b9b159810f9fc226fcc001ba0202894 (diff) | |
download | podman-6d2b54a731cf5ac9a7e760709748ee96a636d65e.tar.gz podman-6d2b54a731cf5ac9a7e760709748ee96a636d65e.tar.bz2 podman-6d2b54a731cf5ac9a7e760709748ee96a636d65e.zip |
Merge pull request #13197 from giuseppe/doc-cannot-write-loginuid
[CI:DOCS] troubleshooting: add doc for ssh into a container
-rw-r--r-- | troubleshooting.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/troubleshooting.md b/troubleshooting.md index 82ca64305..8fcce22a7 100644 --- a/troubleshooting.md +++ b/troubleshooting.md @@ -919,3 +919,22 @@ After deleting a client VM on macOS via `podman machine stop` && `podman machine ### Solution You will need to remove the hanging gv-proxy process bound to the port in question. For example, if the port mentioned in the error message is 127.0.0.1:7777, you can use the command `kill -9 $(lsof -i:7777)` in order to identify and remove the hanging process which prevents you from starting a new VM on that default port. + +### 32) The sshd process fails to run inside of the container. + +#### Symptom + +The sshd process running inside the container fails with the error +"Error writing /proc/self/loginuid". + +### Solution + +If the `/proc/self/loginuid` file is already initialized then the +`CAP_AUDIT_CONTROL` capability is required to override it. + +This happens when running Podman from a user session since the +`/proc/self/loginuid` file is already initialized. The solution is to +run Podman from a system service, either using the Podman service, and +then using podman -remote to start the container or simply by running +something like `systemd-run podman run ...`. In this case the +container will only need `CAP_AUDIT_WRITE`. |