You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't start HyperV podman machines got an error each time I start it. The VM is started but the initialization process is errored.
Might be cause by my Windows user name (thus home dirrectory) containing space
Steps to reproduce the issue
Steps to reproduce the issue
create an HyperV podman machine
start it
Describe the results you received
VM is started, error messages in the console:
podman machine start h1
Starting machine "h1"
This machine is currently configured in rootless mode. If your containers
require root permissions (e.g. ports < 1024), or if you run into compatibility
issues with non-podman clients, you can switch using the following command:
podman machine set --rootful h1
Error: accepts 2 arg(s), received 3
Error: Process exited with status 125
Describe the results you expected
Machine should be started successfully
podman info output
OS: windows/amd64provider: hypervversion: 5.4.0Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VMError: unable to connect to Podman socket: failed to connect: dial tcp 127.0.0.1:59529: connectex: No connection could be made because the target machine actively refused it.
Podman in a container
No
Privileged Or Rootless
None
Upstream Latest Release
Yes
Additional environment details
Win11Pro
Additional information
podman machine start --log-level debug h1
time="2025-03-07T09:10:00+01:00" level=info msg="podman filtering at log level debug"
time="2025-03-07T09:10:00+01:00" level=debug msg="Using Podman machine with `hyperv` virtualization provider"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\hyperv is 60"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.local\\share\\containers\\podman\\machine\\hyperv is 65"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.local\\share\\containers\\podman\\machine\\hyperv\\cache is 71"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\JEFFMA~1\\AppData\\Local\\Temp\\podman is 43"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\hyperv\\h1.json is 68"
Starting machine "h1"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\wsl is 57"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.local\\share\\containers\\podman\\machine\\wsl is 62"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.local\\share\\containers\\podman\\machine\\wsl\\cache is 68"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\JEFFMA~1\\AppData\\Local\\Temp\\podman is 43"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\wsl\\podman-machine-default.json is 85"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\hyperv is 60"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.local\\share\\containers\\podman\\machine\\hyperv is 65"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.local\\share\\containers\\podman\\machine\\hyperv\\cache is 71"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\JEFFMA~1\\AppData\\Local\\Temp\\podman is 43"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\hyperv\\h1.json is 68"
time="2025-03-07T09:10:00+01:00" level=debug msg="socket length for C:\\Users\\Jeff Maury\\.config\\containers\\podman\\machine\\hyperv\\h3.json is 68"
Error: unable to start "h1": already running
time="2025-03-07T09:10:00+01:00" level=debug msg="Shutting down engines"
The text was updated successfully, but these errors were encountered:
My guess would be that this is coming from mounting the volumes via our own 9p process.
If you init the VM with --volume= to not use any volumes or specify a custom volume with a path with spaces does it work?
The thing is we do handle argv properly as array so spaces do not matter for us. However the issue is that ssh cannot deal with argv array at all and just joins the args with spaces. So when we exec into the machine via ssh to start the client9p process it gets the wrong arguments now because ssh is unable to actually correctly handle multiple arguments which is well known:
A complete command line may be specified as command, or it may have additional arguments. If supplied, the arguments will be appended to the command, separated by spaces, before it is sent to the server to be executed.
So the only fix for us would be to escape the arguments before giving them to ssh.
My guess would be that this is coming from mounting the volumes via our own 9p process.
If you init the VM with --volume= to not use any volumes or specify a custom volume with a path with spaces does it work?
The thing is we do handle argv properly as array so spaces do not matter for us. However the issue is that ssh cannot deal with argv array at all and just joins the args with spaces. So when we exec into the machine via ssh to start the client9p process it gets the wrong arguments now because ssh is unable to actually correctly handle multiple arguments which is well known:
A complete command line may be specified as command, or it may have additional arguments. If supplied, the arguments will be appended to the command, separated by spaces, before it is sent to the server to be executed.
So the only fix for us would be to escape the arguments before giving them to ssh.
I confirm the machine can start if it has been created with --volume=
Issue Description
I can't start HyperV podman machines got an error each time I start it. The VM is started but the initialization process is errored.
Might be cause by my Windows user name (thus home dirrectory) containing space
Steps to reproduce the issue
Steps to reproduce the issue
Describe the results you received
VM is started, error messages in the console:
Describe the results you expected
Machine should be started successfully
podman info output
Podman in a container
No
Privileged Or Rootless
None
Upstream Latest Release
Yes
Additional environment details
Win11Pro
Additional information
The text was updated successfully, but these errors were encountered: