openvpn --config 명령 이후 치명적인 오류로 인해 종료됩니다.

openvpn --config 명령 이후 치명적인 오류로 인해 종료됩니다.

방금 Fedora 시스템에 openvpn을 설치하고 구성했습니다. 하지만 내 문제는 openvpn --config 명령을 입력한 후 다음 오류가 발생한다는 것입니다. 그런데 구성 파일 이름은 client.ovpn입니다.

Wed Mar 18 01:49:16 2020 OpenVPN 2.4.8 x86_64-redhat-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] 
[EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Nov  1 2019
Wed Mar 18 01:49:16 2020 WARNING: No server certificate verification method has been enabled.  See http://openvpn.net/howto.html#mitm for more info.
Wed Mar 18 01:49:16 2020 Outgoing Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Wed Mar 18 01:49:16 2020 Incoming Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Wed Mar 18 01:49:16 2020 failed to find GID for group nogroup
Wed Mar 18 01:49:16 2020 Exiting due to fatal error

client.ovpn 파일의 내용:

client
tls-client
pull
dev tun
proto udp
remote 192.168.1.1 1194
resolv-retry infinite
nobind
dhcp-option DNS 8.8.8.8
user nobody
group nogroup
persist-key
persist-tun
key-direction 1
tls-auth ta.key 1
comp-lzo
verb 3
ca ca.crt
cert client.crt
key client.key
auth SHA512

Fedora 31을 사용하고 있습니다. 어떻게 해결할 수 있나요?

답변1

오류 메시지를 읽어 보십시오:

Wed Mar 18 01:49:16 2020 failed to find GID for group nogroup

nogroup시스템에 해당 그룹이 없기 때문에 그룹 이름 구성이 유효하지 않음을 알려줍니다 .

관련 정보