我使用的是 Fedora 38。我在 AWS 上设置了 OpenVPN。我下载了 OpenVPN 客户端证书。当我尝试连接时,它失败了。我不确定如何继续诊断问题。基本上,我尝试(按照OpenVPN 页面):
sudo openvpn3 config-import --config profile-5.ovpn
Configuration imported. Configuration path: /net/openvpn/v3/configuration/fbe8
sudo openvpn3 session-start --config profile-5.ovpn
** ERROR ** Could not establish a connection with 'net.openvpn.v3.sessions'
因此我尝试通过以下方式获取更多信息:
sudo openvpn3 log --log-level 6 --config profile-5.ovpn
但结果对我没有帮助:
g_mutex_clear() called on uninitialised or locked mutex
Aborted
来自以下人员的额外建议这里- 建议使用:
/usr/libexec/openvpn3-linux/openvpn3-service-sessionmgr
不存在。我试过:
sudo /usr/libexec/openvpn3-linux/openvpn3-service-configmgr
但这会引发异常。在引发实例后调用终止
'DBusException'
what(): openvpn3-service-configmgr could not register 'net.openvpn.v3.configuration' on the D-Bus
Aborted
更新主题这里- 然后建议手动设置日志级别。
openvpn3-admin log-service --log-level 6
openvpn3-admin netcfg-service --config-set log-level 6
我照做了。我看到一个 glib 错误 - 并且线程中提到了 Glib 问题:
(process:67252): GLib-GObject-CRITICAL **: 11:04:07.329: g_object_unref: assertion 'old_ref > 0' failed
不知道接下来该去哪里。请指教。