Open port 1194 for openvpn service

Solution 1:

Having openvpn bind to localhost:1194 doesn't really make much sense unless you're doing something you haven't told us about, as it's not like you can connect to it from anywhere useful but still...

Unless you have specified otherwise by using the local directive then the documentation suggests that it should bind to all available IP addresses so you could try nmaping the others.

Alternatively you can use ps to see if you have any openvpn processes running, if not check your logs after/during an attempt to start them (service openvpn start | systemctl start openvpn).

If your processes are running then check what interfaces they are listening on,

netstat -tulp | grep openvpn

...