-
Title used to be: "Does netavark run in rootless and it require special parameters to run a server app on it?" The focus is now more on the actual error. App error
https://github.com/maidsafe/safe_network/blob/main/sn/src/bin/sn_node.rs#L315 Run command
Podman network info
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
Netavark does work without root, but rootless networking in general is much more limited than root networking in general, so you are likely running into limitations in how rootless networking works. In general: rootless containers connected to networks do have IP addresses, but they are exclusively for communicating with other rootless containers. They are confined to the rootless network namespace; the host cannot ping them or contact them, for example (unless |
Beta Was this translation helpful? Give feedback.
-
Running with --auto=userns in rootless mode, means that you get very few UIDs, whereas it is much larger when run in rootfull mode. |
Beta Was this translation helpful? Give feedback.
-
Problem solved. |
Beta Was this translation helpful? Give feedback.
Problem solved.
I apparently removed the
--ip
option due to another issue and forgot.