1833882 Members
2107 Online
110063 Solutions
New Discussion

Xserver

 
Jason_309
Regular Advisor

Xserver

We are running Oracle apps and they are asking us to start Xserver for a new printing utility they have. I dont know anything about Xserver. Can some one tell me if this is not a good idea to have running or how to start it. Thanks
14 REPLIES 14
Hanwant Verma_1
Regular Advisor

Re: Xserver

Can you tell me more about your system in detail.

Hanwant
Jason_309
Regular Advisor

Re: Xserver

It is an rp7410 running on HP-Ux 11.11. I have an oracle database and oracle apps. What do you need to know?
Steven E. Protter
Exalted Contributor

Re: Xserver

A font server needs to be run.

to auto-run it at startup:

vi /etc/rc.config.d/xfs

Change the first parm to 1.

To start one time or w/o boot:

/sbin/init.d/xfs start

That starts the server.

Then you need to make sure your DISPLAY variable is good.

Direct logon using telnet or ssh

DISPLAY=$(who -m -u | awk '{print $8}'):0.0


Add this to .profile for the user that is going to connect:

Now you are in business.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Jason_309
Regular Advisor

Re: Xserver

Thank you very much i wil try it out.
Alex Glennie
Honored Contributor

Re: Xserver

Mmm starting a font server eh ?

How will the remote desktop know the font server exists .... ?

Won't you need to tell oracle to use it ?

Could it be oracle needs an Xserver simply to display an image/print file prior to printing it ... a bit like the HP technical print server needs to ....

If this were me I'd setup xvfb (think of it as a virtual screen located in memory) to achieve this.

see http://www.idevelopment.info/data/Unix/General_UNIX/GENERAL_XvfbWithOracle9iAS.shtml


fyi xvfb is now incorporated as an Xserver extension and there are startup scripts available from HP or see my post ->
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=6660

if the site no longer contains the depot I'm surprised ... drop me an email and I'll forward you a copy when I get back into work tomorrow
Steven E. Protter
Exalted Contributor

Re: Xserver

My first post is absolutely useless.

xvfb is the only way to service the oracle application server. The app server will work without it bur oracle reports requires it.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Jason_309
Regular Advisor

Re: Xserver

Thanks for your help guys. I do need it for the reports.
john kingsley
Honored Contributor

Re: Xserver

I wonder if they mean a Technical Printer Server (or X print server). This can be configured through SAM. It's basically a X-Server that run on your system and accepts print request from X-Windows client applications.
Jason_309
Regular Advisor

Re: Xserver

John, where in SAM can you do this?
Alex Glennie
Honored Contributor

Re: Xserver

Jason,

are you sure you or Oracle want TPS ... ?

"Print Server Configuration" option under
Printers & plotters:

SAM Areas:Printers and Plotters
SAM HP Distributed Print Service ->
SAM LP Spooler ->
SAM Print Server Configuration


nb check first # swlist -l product | grep -i techprint


if TPS "Technical Print Services" is not installed, SAM willnot show "Print Server Configuration".

john kingsley
Honored Contributor

Re: Xserver

For more information about TPS, consult the "Technical Print Service System Administrator's Guide". This manucal can be opened from CDE by clicking Help_Manager icon(?) on the toolbar.
Jason_309
Regular Advisor

Re: Xserver

What i need is a Xserver running for Oracle apps. Is that TPS is? Or do i need Xvfb for that?
Borislav Perkov
Respected Contributor

Re: Xserver

Hi Jason,
You need Xvfb for Oracle apps.
Regards,
Borislav
Jason_309
Regular Advisor

Re: Xserver

Thank you.