arch-delugevpn icon indicating copy to clipboard operation
arch-delugevpn copied to clipboard

New container with wireguard fails to start

Open c2mfj opened this issue 1 year ago • 3 comments

New container with latest pull with wireguard as vpn client fails to start b/c wireguard conf does not exist. The directions state that I should place the wireguard conf after the first start of the container.

2023-06-11 13:36:29.268817 [info] System information Linux df7f5c8a7a68 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 GNU/Linux 2023-06-11 13:36:29.392883 [info] OS_ARCH defined as 'x86-64' 2023-06-11 13:36:29.501764 [info] PUID defined as '0' 2023-06-11 13:36:29.635152 [info] PGID defined as '0' 2023-06-11 13:36:30.029417 [info] UMASK defined as '000' 2023-06-11 13:36:30.135356 [info] Permissions already set for '/config' 2023-06-11 13:36:30.328222 [info] Deleting files in /tmp (non recursive)... 2023-06-11 13:36:30.477631 [info] VPN_ENABLED defined as 'yes' 2023-06-11 13:36:30.540555 [info] VPN_CLIENT defined as 'wireguard' 2023-06-11 13:36:30.596781 [info] VPN_PROV defined as 'custom' 2023-06-11 13:36:30.962061 [crit] No WireGuard config file located in /config/wireguard/ (conf extension), please download from your VPN provider and then restart this container, exiting...

c2mfj avatar Jun 11 '23 13:06 c2mfj

same problem here any solutions?

MarcS1975 avatar Feb 26 '24 14:02 MarcS1975

yeah, the solution is in the log:- No WireGuard config file located in /config/wireguard/ (conf extension), please download from your VPN provider and then restart this container, exiting...

binhex avatar Feb 27 '24 12:02 binhex

Thanks. I did that and now the containers launch but I cannot access the GUI via QB_HOST_IP:8484. This is my Compose. I had to change ports. Does that cause problems?:

version: "2.2" services: qbittorrentvpn: image: binhex/arch-qbittorrentvpn container_name: binhex-qbittorrentvpn #wireguard privileged: true environment: - PUID=0 - PGID=0 - TZ=Europe/London - UMASK=000 - VPN_ENABLED=yes - VPN_PROV=custom #- VPN_CLIENT=openvpn - VPN_CLIENT=wireguard #- STRICT_PORT_FORWARD=yes - LAN_NETWORK=MYLAN/24 - NAME_SERVERS=1.1.1.1,1.0.0.1,9.9.9.9 - DEBUG=false - WEBUI_PORT=8484 - ENABLE_PRIVOXY=no #- VPN_OPTIONS=additional openvpn cli options
volumes: - MYPATH/arch-qbittorrentvpn/data:/data - MYPATH/arch-qbittorrentvpn/config:/config - /etc/localtime:/etc/localtime:ro #wireguard - /lib/modules:/lib/modules:ro ports: - 6882:6881 - 6882:6881/udp - 8484:8080 - 8118:8118 cap_add: - NET_ADMIN #wireguard - SYS_MODULE #Needed for wireguard sysctls: - net.ipv4.conf.all.src_valid_mark=1 restart: unless-stopped

MarcS1975 avatar Feb 27 '24 14:02 MarcS1975