我想在我的 docker 容器内运行 Private Internet Access 的 linux cli 应用程序。我使用 systemd-ubuntu 基础映像运行容器,因为 piactl(PIA linux 应用程序)需要 systemd,但目前不可用...
我想在我的 docker 容器中运行 Private Internet Access 的 linux cli 应用程序。我使用 systemd-ubuntu
基础映像运行容器,因为 piactl
(PIA linux 应用程序) 需要 systemd
在 ubuntu docker 映像中默认不可用。
docker run --privileged -d \
--name ubuntu-systemd-container \
--cgroupns=host \
--tmpfs /run \
--tmpfs /run/lock \
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
jrei/systemd-ubuntu:22.04
然后一旦它运行,我安装 piactl wget https://installers.privateinternetaccess.com/download/pia-linux-arm64-3.5.7-08120.run
.
我使安装程序可执行,以非 root 用户身份运行,并且安装成功。
但问题是,一旦我登录并运行 piactl connect
- 它就不会连接, piactl get connectionstate
显示 Connecting
,它不会抛出任何错误。事实上,当我运行时, piactl --debug connect
输出看起来很正常,与我在 ubuntu 虚拟机中使用 piactl 时没有任何问题的输出相同。
piactl --debug connect
[2024-08-23 09:42:57.013][2def][cli.cliclient][src/cliclient.cpp:15][info] CLI connected: 1
[2024-08-23 09:42:57.013][2def][common.jsonrpc][src/jsonrpc.cpp:322][info] Sending request QJsonValue(double, 1) to invoke RPC method "connectVPN"
[2024-08-23 09:42:57.014][2def][common.jsonrpc][src/jsonrpc.cpp:409][info] Request 1 succeeded
[2024-08-23 09:42:57.014][2def][cli.clicommand][src/clicommand.cpp:158][info] Daemon accepted "connectVPN" RPC
谢谢。