- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to move remote printer configurations from 10....
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
11-20-2000 12:21 PM
11-20-2000 12:21 PM
How to move remote printer configurations from 10.20 server to 11.0 server
We are migrating applications from a server running HPUX 10.20 to another server that is running HPUX 11.00, is there a way to move printer configurations to this HPUX 11.0 server without losing existing printer configurations?
Thanks in advance,
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2000 12:29 PM
11-20-2000 12:29 PM
Re: How to move remote printer configurations from 10.20 server to 11.0 server
Here's a thread that discussed (and addressed) this need:
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x76fe6c96588ad4118fef0090279cd0f9!1,00.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2000 12:32 PM
11-20-2000 12:32 PM
Re: How to move remote printer configurations from 10.20 server to 11.0 server
Good luck
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2000 01:18 PM
11-20-2000 01:18 PM
Re: How to move remote printer configurations from 10.20 server to 11.0 server
I know how to move printer configurations from one server to another server, but this would mean that I will lose my existing printer configurations on server that is running HPUX 11.00. My question is that if there is a way to merge printer configurations together from these two servers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 06:36 AM
11-21-2000 06:36 AM
Re: How to move remote printer configurations from 10.20 server to 11.0 server
you can do it by backuping the above folder :
/etc/lp,/usr/spool/lp,/var/spoll/lp
from your 10.20 server,then restore them to you new server without losing the existing printer.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 07:12 AM
11-21-2000 07:12 AM
Re: How to move remote printer configurations from 10.20 server to 11.0 server
#!/usr/bin/ksh
if [ $# != 3 ]; then
echo
echo "Required arguments are: LOCALNAME REMSYS REMNAME"
echo
exit
fi
LOCALNAME=$1
REMSYS=$2
REMNAME=$3
#* Stop the lp scheduler.
/usr/sbin/lpshut
#* Add the printer to the lp spooler.
/usr/sbin/lpadmin -p$LOCALNAME -orm$REMSYS -orp$REMNAME -mrmodel -v/dev/null -orc -ocmrcmodel -osmrsmodel
#* Tell the lp scheduler to accept print requests for it.
/usr/sbin/accept $LOCALNAME
#* Tell the lp scheduler to enable it to print accepted print requests.
/usr/bin/enable $LOCALNAME
#* Start the lp scheduler with logging turned off.
/usr/sbin/lpsched
Run "lpstat -v" on both servers to get a list of all printers, and then run the above script for all the printers on each server.