当我使用'/ etc / openvpn'中的'openvpn server.conf'运行openvpn时,一切正常。但是当我运行'/etc/init.d/openvpn start'或'/etc/init.d/openvpn start server'或'/etc/init.d/openvpn start server.conf'时,将忽略server.conf配置文件。 为什么呢?
希望有人可以帮助我。
问候。
答案 0 :(得分:0)
要检查的第一件事是systemd状态(如果我正确的话,Debian 8正在运行systemd。)
所以你可以这样做: systemctl status openvpn 并检查输出。
让我们知道结果。
答案 1 :(得分:0)
最后我找到了解决方案。
而不是使用/etc/init.d/openvpn restart
,您可以使用
service openvpn restart
或
systemctl restart openvpn.service
启动/停止/重启/重新加载服务。 https://stackoverflow.com/a/28930361/6217547让我得到了这个解决方案。