Tags

11g (5) 12c (6) 18c (3) 19c (4) ASM (1) Critical Patch (11) Data Pump (1) Dataguard (9) Diverse (3) GRID (7) GitLab (2) Linux (8) OEM (2) ORA Errors (13) Oracle (12) RMAN (4)
Showing posts with label VNC Server Installation Steps. Show all posts
Showing posts with label VNC Server Installation Steps. Show all posts

Sunday, February 5, 2023

VNC Server Installation Steps

 VNC Server Installation Steps

PURPOSE: All documents are provided on this Blog just for educational purposes only.  Please make sure that you run it in your test environment before to move on to production environment. 

yum groupinstall "Server with GUI"
unalias shutdown
shutdown -r now
yum install tigervnc-server xorg-x11-fonts-Type1
yum install xorg-x11-xauth xorg-x11-fonts-* xorg-x11-utils

vncpasswd


pwd
/root
cd .vnc/

The File config file looks like as follow and no need to change.

vi .vnc/config

# securitytypes=vncauth,tlsvnc
# desktop=sandbox
# geometry=2000x1200
# 1920x1200
# localhost
# alwaysshared


VNC start stop script

Create a VNC start script as follow. 

more startVNC_55
vncserver -kill :55
sleep 5
vncserver :55 -geometry 1920x1200


./startVNC_55 &

ps -ef|grep vnc


MobaX

hostname=vm-adm-vnc-th.com

port=5955


For DISPLAY

NOTE: check following setting 

vi /etc/ssh/sshd_config
Uncheck and set to no
X11UseLocalhost no
service sshd restart

xhost +

or

xhost

ssh username@hostname -X

Test with the command

xclock

Your comments are most valuable and it would help me to come up with better posts. 

physical standby without duplicate command

physical standby without duplicate command create a physical standby database using RMAN without using duplicate command PURPOSE:   All docu...