- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How Do I De-Install NetWorking on an HP ?
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
04-25-2003 09:02 AM
04-25-2003 09:02 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2003 09:09 AM
04-25-2003 09:09 AM
SolutionIf you just want to use loop back address then edit following files
/etc/hosts
/etc/rc.config.d/netconf
Or run
#set_parms ip_address
But this will not solve your problem to solve your problem do the following and then try to run swinstall.
1. kill your named process
2. temportarily change you /etc/hosts entry
127.0.0.1 localhost lopback
to
127.0.0.1 your_host_name loopback
put other entry in comment.
with these settings you can run swinstall now ,
if you still has problem then
you should use the swinstall option
(???x use_alternate_source=true)
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2003 12:41 PM
04-25-2003 12:41 PM
Re: How Do I De-Install NetWorking on an HP ?
You can modify the startup daemons in /sbin/rc3.d and /sbin/rc2.d by removing or renaming links to not start with S
That will stop networking from starting.
But you are limiting severely what HP-UX can do for you.
swagentd is the daemon that allows swinstall and swremove to work.
I don't think its a good idea to start uninstalling core network technology. Better off pulling the cable out of the NIC card.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2003 12:59 PM
04-25-2003 12:59 PM
Re: How Do I De-Install NetWorking on an HP ?
Since you're 100BaseT connection is already installed..., it's likely you've got a /etc/nsswitch.conf problem.
1) Verify nsswitch.conf:
/etc/nsswitch.conf:
...
hosts: files nis dns
2) Verify hostname and ip:
nslookup ip (* returns files: hostname *)
nslookup hostname (* returns files: ip *)
3) 'set_parms initial' will run you through all of your network parameters and allow you to accept or re-enter different values. Reboot follows.
4) The loop back work around Sachin provided is also commonly used and will work.
5) With anything other than a reboot:
swagentd -k
rm /var/adm/sw/products/swlock
rm /var/spool/sw/catalog/swlock
swagentd -r
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 04:11 AM
04-28-2003 04:11 AM
Re: How Do I De-Install NetWorking on an HP ?
Sounds like you want to set your system up in Standalone mode so you can get swinstall to work and install that FDDI driver. As mentioned HPUX doesnt operate so well w/ out networking, it expects it. If you want to set up your system as a standalone then reference
this doc on ITRC: KBRC00002373
Revert changes after you install the fddi.
Todd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 05:50 AM
04-28-2003 05:50 AM
Re: How Do I De-Install NetWorking on an HP ?
ifconfig lan0 down
ifconfig lan0 unplumb
blanked out netconf
killed swagentd
set hostname to localhost "#hostname localhost"
Now localhost pingable - start swagentd
run SAM
install FDDI drivers
reboot
fix swagentd once more
run SAM.. finally config'd networking on lan1
BTW, any trick to have "set_parms inititial" use lan1 instead of defaulting to lan0?
Thanks all!