How To Setup "Remote Desktop" of Linux Server || How To Configure TigerVNC In RHEL & CentOS [SOLVED]

Опубликовано: 03 Октябрь 2024
на канале: Linux eHub
5,163
59

How To Setup "Remote Desktop" of Linux Server || How To Configure TigerVNC In RHEL & CentOS

Your Queries:
How to access Linux server remotely from Windows
RDP in Linux server
TigerVNC
TigerVNC configuration
TigerVNC server

Hello Friends,
In this video I have shown detailed steps how to configure TigerVNC in RHEL8/CentOS8. Don't skip, watch till end. Also share your comment.

Below are the detailed steps with command.
If this video is help full, Please subscribe my channel and press the bell icon.

1-Installing the VNC service
yum install tigervnc*

2-Configuring the VNC service
•Adding user
useradd user_name
passwd user_name

•After that login as the user and create a vncpassword.
su - user_name
$ vncpasswd
** press "n" while ask to enter a view-only password.
$ exit

•To create a VNC server configuration file for user, copy the original VNC config file and
edit it for the user
cp /lib/systemd/system/[email protected] /etc/systemd/system/vncserver@:1.service

•Add user in vncserver@:1.service
vi /etc/systemd/system/vncserver@:1.service

** add the user name as shown in the video.

•Reload the configuration:
systemctl daemon-reload

•Enable and start the vnc service:
systemctl enable vncserver@:1.service

•To start the service if its not already started:
systemctl start vncserver@:1.service

Firewall Setup:
firewall-cmd --zone=public --add-port=5901/tcp --permanent
firewall-cmd --reload

3- How to access from remote vnc client:
• Install vnc client
• Access vnc server – IP:port
Ex- 10.194.164.32:5901

Note: Don’t logout the vnc session. Vncservice restart required after logout user vnc session.


Register for :
Linux "Basic & Fundamental For Beginners " - Complete Course (Online Classes). ** FREE **
https://docs.google.com/forms/d/e/1FA...

Thank You !!!

#tigervnc #LinuxeHub #tigervncserver #linux #linuxcommands