Thanks in advance and regards,
Channesh
on db server:
export DISPLAY=machinename-from-where-you-started-tellne-session:0.0
on machinename-from-where-you-started-tellne-session:
xhost +dbservername
on db server:
xterm
It all looks a bit muddled to me...could you brief on that.
Thanks an regards,
Channesh
>>>Installing Oracle10g on a Remote Linux Server
If you don't install Oracle on your local system but on a remote
server, then you need to relink X to your local desktop. The easiest
way to do this is to use the "X11 forwarding" feature of ssh. This
means that you don't have to run xhost and set the DISPLAY environment
variable.
Here is an example how to use the "X11 forward" feature of SSH. Simply
run the following command from your local desktop:
$ ssh -X oracle@oracle_remote_server_name
Now when you run any GUI tools on the remote server, it should
automatically be relinked to your local desktop. If this is not
working, verify that forward X11 is not set to "no" in
/etc/ssh/ssh_config on the remote server:
su - root
grep ForwardX11 /etc/ssh/ssh_config
# ForwardX11 no
ForwardX11Trusted yes
Channesh