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
09-02-2005 05:21 AM
09-02-2005 05:21 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:24 AM
09-02-2005 05:24 AM
Re: services
Start sam and got to Networkinging and Communications then to Network cards. Select the card and make the changes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:27 AM
09-02-2005 05:27 AM
Re: services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:28 AM
09-02-2005 05:28 AM
Re: services
/sbin/init.d/net stop
/sbin/init.d/net start
and hope.
BUT... there may be other network bound processeses needing restart/reconfiguration.
If downtime is acceptable, simply lower and raise the system runlevel to 1 and back up to 3 (commands: init 1 (then wait until it says 'runlevel transition completed') init 3 (dito)
otherwise You'll have to look at all processes running and see what needs to be taken care of.
the best way to periodically check for this is running
netstat -na | grep LISTEN
look for anything that is not bound to 0.0 but the old IP address, unlike the following example.
tcp 0 0 *.22 *.* LISTEN
Also, there is a chance that restarting inetd is enough.
[ and, for the future, You should take notes of all You change and find, as You should know what's running on Your systems.]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:29 AM
09-02-2005 05:29 AM
Re: services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:32 AM
09-02-2005 05:32 AM
Re: services
/sbin/init.d/hpbtlan stop/start
/sbin/init.d/hpether stop/start
/sbin/init.d/hpgelan stop/start
/sbin/init.d/hpiether stop/start
/sbin/init.d/hpigelan stop/start
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:33 AM
09-02-2005 05:33 AM
Re: services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 05:38 AM
09-02-2005 05:38 AM
Re: services
shutdown -r -y 0
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 07:04 AM
09-02-2005 07:04 AM
SolutionThe list of services available on HPUX are listed in /etc/services.
You can use "ps -ef" to know what all services are running.
Also if you like to start/stop services then you should look for the related scripts that are kept in /sbin/init.d
For e.g. if i want to start nfs service on HP i would do:
# /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.server start
This run core nfs services and the nfs server.
Similarly for stopping use:
# /sbin/init.d/nfs.server stop
# /sbin/init.d/nfs.core stop
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 07:30 AM
09-02-2005 07:30 AM
Re: services
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2005 10:26 AM
09-03-2005 10:26 AM
Re: services
to see al the network services the host is offering try netstat -a| grep LISTEN
Network services are started in 2 way: directly from a specific script in /sbin/init.d (eg /sbin/init.d/xfs start the X11 font server service) or from the daemon inetd (see the file /etc/inetd.conf for the configured services)
First kind of services may be stopped started with /sbin/init.d/<script name> stop followed by /sbin/init.d/<script name> start
For the second one you must modify the file /etc/inetd.conf commenting and uncommenting services ou want/do not want run and then execute inetd -c
Anyway i'm not sure to understand why u wanna do that, if you only change the network card configuration the services will be immediately available on the new IP address.
Please explain better your goal !!
hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 01:30 AM
09-05-2005 01:30 AM
Re: services
the only safe way of detecting *all* network services is to look through the lists of open network ports (LISTEN) like I already put in an example. (optionally one can then install lsof and use lsof -p
As You don't yet know which services are running on Your system, You just have to work this out manually. Advantage: afterwards You'll know it :)