connecting to sesman ip 127.0.0.1 port 3350 sesman connect ok sending login info to session manager, please wait…
I manage to solve the issue by
Step 1: Cleaning up the /tmp/.X11-unix
Step 2: Stop the VNC-Server and xrdp. Uninstall the VNCServer and xrdp to clean up all the processes
# service xrdp stop # service vnc-server stop # yum remove vnc* # yum remove xrdp
Step 3: Find and clean up the vncserver and xrdp orphan sessions
# ps -afe|grep vnc* # kill -9 process_id_of_orphaned_vnc_process # ps -afe|grep xrdp # kill -9 process_id_of_orphaned_xrdp_process
Step 4: Yum install vnc-server and xrdp and start the services
# yum install vnc-server # yum install xrdp # service vnc-server start # service xrdp startTry logging to the Linux Box using Remote Desktop Protocol again.
No comments:
Post a Comment