- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: remote printing problems from one hp_ux server...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 03:16 AM
01-12-2005 03:16 AM
remote printing problems from one hp_ux server to another
Any suggestions. You can send print jobs from all other servers to this remote printer and it works fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 03:20 AM
01-12-2005 03:20 AM
Re: remote printing problems from one hp_ux server to another
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 03:24 AM
01-12-2005 03:24 AM
Re: remote printing problems from one hp_ux server to another
Try to ping from the srever to the originator.
do an nslookup on the print server for the new servers name to make sure it can resolve the name.
My guess is there is no reply from the print server to the new one when you send the job.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 03:44 AM
01-12-2005 03:44 AM
Re: remote printing problems from one hp_ux server to another
From the print server to the server issueing the print request I can run a nslookup of the other printer and it works. I can ping both servers from each other. I can telnet, ftp, etc from one of the printers to the other. The spooler is running on both printers.
It does appear to be some sort of issue with the print server replying back, but I am not sure what that is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 05:09 AM
01-12-2005 05:09 AM
Re: remote printing problems from one hp_ux server to another
I may ask a dumb qustion but, do you really have the correct IP when doing a nslookup on 'printserver.corp.com' ?
Maybe there is an entry in /etc/hosts and the resolution order is 'hosts' before 'DNS' ...
Another hint : if you're using LPD protocol, try :
telnet printserver.corp.com 515
if you get a connection, the printing system should not complain, well, I think ;)
AR.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 05:25 AM
01-12-2005 05:25 AM
Re: remote printing problems from one hp_ux server to another
You could check the file on the new server
/var/spool/lp/interfaces/printername to make sure there is no IP address configured there. (you could compare that file to one of the servers that works also)
the print server to printer setup must be correct, since it works from other servers.
Are all servers on the same section of network? Or do you have to worry about things like specific ports being blocked between print server and new server. Ping from print server to new server would not be a complete test. Telnet from the print server to new server using server name as a better test.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 05:52 AM
01-12-2005 05:52 AM
Re: remote printing problems from one hp_ux server to another
There is a problem when you do a telnet printerserver 515. It will connect but immediately you will see connection closed by foriegn host. The servers that work will stay connected until you issue ctrl ].
Do you have suggestions on how to fix that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 06:21 AM
01-12-2005 06:21 AM
Re: remote printing problems from one hp_ux server to another
This may be caused by your printserver's connection aceptance/denial.
It therefore may depend on the network address your 'client' host has.
You are able to check the restrictions, AFAK on HPUX10.x & 11.x with SAM :
>Networking & Communications
->System Access
-->Internet Services
Select 'printer' and check the 'system permission' field(s).
Maybe there are other files involved in accpting/denying network connections directly handled by the print daemon (lpsched).
Anyhow, check out if there is a common point regarding ip ranges that may exlude your 'refused client'.
Hope this helps ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2005 04:31 AM
11-08-2005 04:31 AM
Re: remote printing problems from one hp_ux server to another
Did you find a solution to this problem ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2008 06:08 AM
04-03-2008 06:08 AM
Re: remote printing problems from one hp_ux server to another
I had the same issue today and it was solved after change /etc/inetd.conf
The following outputs in the lab:
SERVER 1
# lp -dteste100 /etc/passwd
request id is teste100-2 (1 file)
# lpstat
teste100-2 root priority 0 Apr 3 10:35 on teste100
passwd 904 bytes
printer queue for teste100
host: lost connection after sending the main command to SERVER 2, Retrying ...
In this case the issue was a wrong input on printer line on /etc/inetd.conf on SERVER 1
##printer stream tcp nowait root /usr/sbin/rlpdaemon rlpdaemon -i
printer stream tcp nowait root /usr/lib/rlpdaemon -i
After change the /etc/inetd.conf to the following entries:
printer stream tcp nowait root /usr/sbin/rlpdaemon rlpdaemon -i
# inetd -c
# lp -d
--OK
The remote printer is working fine!