Question: How do I stop the xinetd daemon from starting VNC Server processes?
1. Go to xinetd configuration file /etc/xinetd.d/vnc-server. Modify the file and look for the line disable = no and set the value to yes.
# vi /etc/xinetd.d/vnc-server service vnc-server-1 { disable = no socket_type = stream protocol = tcp wait = yes user = nobody server = /usr/bin/Xvnc server_args = -inetd -query localhost -geometry 1440x900 -depth 24 -once -securitytypes=none }
2. Restart the xinetd service to take effect the changes.
# systemctl restart xinetd.service