Replies: 1 comment 2 replies
-
|
The issue is not port 9000. The issue is behind these error messages: Something is wrong with your volume. You need to mount a volume to the mount point |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, for various reasons, I need to install using a bash script and not Docker Compose.
Port 9000 is already in use. How do I change it?
My docker run :
docker run -d
--name "$CONTAINER_NAME"
--hostname "$HOSTNAME"
--restart unless-stopped
--privileged
--network openwrt_default
--pid host
--device /dev/net/tun
--device /dev/kvm
--device /dev/bus/usb
-v "$VOLUME_NAME":/overlay
-e WAN_IF=host
-e LAN_IF=veth
-e FORWARD_LUCI=true
"$DOCKER_IMAGE"
I also get the following errors:
**** End Alpine release information ****
CPU architecture: 'aarch64'
❯ Enable LuCI forwarding to host LAN at port 9000
qemu-openwrt-web-backend proof-of-concept
❯ /storage/squashfs-combined-f5d2b735-a974-401f-9af3-04c81f765387.img exists. Nothing to do.
unable to initialize usb specnginx: [emerg] bind() to 0.0.0.0:9000 failed (98: Address in use)
2025/09/29 00:43:29 [emerg] 472861#472861: bind() to 0.0.0.0:9000 failed (98: Address in use)
2025/09/29 00:43:29 [notice] 472861#472861: try again to bind() after 500ms
nginx: [warn] conflicting server name "" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "" on [::]:80, ignored
cat: can't open '/storage/current_version': No such file or directory
❯ ERROR: Status 1 while: cat /storage/current_version (line 16/0)
❯ ERROR: Status 1 while: FILE=/storage/$(cat /storage/current_version) (line 16/0)
❯ Container is stopping. Performing cleanup...
Cleanup complete.
multirun: one or more of the provided commands ended abnormally
thx a lot
Beta Was this translation helpful? Give feedback.
All reactions