DISPLAY variable erroring when installing Oracle 10g.

Hi,

I'm trying to install Oracle 10g in Solaris 10.
As required in the instructions, I set the DISPLAY variable:

$ DISPLAY=192.168.150.128:0.0 ; export DISPLAY

when run the runInstaller in a terminal, it displays an error related to DISPLAY variable. :frowning:

Any ideas??

Thanks.

If you are remotely connected via rsh/ssh to the server where you want to install Oracle, you may need to execute "xhost +" on your client machine (192.168.150.128).

If the IP address provided is the server and you are physically connected to it, set DISPLAY variable as follow and retry:

DISPLAY=":0.0" export DISPLAY

It worked with:
DISPLAY=":0.0" export DISPLAY

Thanks!