- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Systems Administration
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
07-17-2003 05:30 AM
07-17-2003 05:30 AM
Systems Administration
Please let me know the implications of having a different system name and a hostname?
thankyou in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:33 AM
07-17-2003 05:33 AM
Re: Systems Administration
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:33 AM
07-17-2003 05:33 AM
Re: Systems Administration
If you mean just changing a current systems name, then unless you tell everything else that the name has changed, you could very well have problem accessing the machine.
If that's not what you mean, please explain further.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:35 AM
07-17-2003 05:35 AM
Re: Systems Administration
Ta
george
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:37 AM
07-17-2003 05:37 AM
Re: Systems Administration
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:40 AM
07-17-2003 05:40 AM
Re: Systems Administration
It sounds like you are referring to having a TCP/IP host name that is different than your system name (ie. System Name = HPBOX1 and Network Name = HPServer1).
If this is the case, then I don???t see much more of a problem than what our good friend Pete stated.
As long as you have competent SysAdmins, then there should really be no big issues as long as all of the systems that need to connect to the box know how to get there.
The only time I have ever had to know or use my System Name was when I was opening a case with HP for something.
Of course, if I have overlooked something I???m sure these wonderful people will point out my oversights ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:44 AM
07-17-2003 05:44 AM
Re: Systems Administration
This would normally be something handled by the DHCP servers in the network???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:49 AM
07-17-2003 05:49 AM
Re: Systems Administration
hostname $HOSTNAME
set_return
if [ -z "$NODENAME" ] ; then
uname -S ${HOSTNAME%%.*}
else
uname -S $NODENAME
fi
set_return
In other words, if $NODENAME has not been set (it's zero-length), then uname -S will be set to the $HOSTNAME value (with possible domain info stripped). If $NODENAME does have a value, then that value is used.
(netconf is missing comments about this variable)
NODENAME is the LAN name that is defined for name resolution (/etc/hosts, DNS or NIS) and can (but not always recommended) be a fully qualified domain name (FQDN) such as rabbit.mydept.com while HOSTNAME is limited to the rules for uname -S. It is a good idea to keep them the same and use aliases in /etc/hosts or DNS to have alternate names for the same IP address.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:53 AM
07-17-2003 05:53 AM
Re: Systems Administration
I have nodes that are known by different names, BUT I always try to keep the systems name & nodename the same & use (DNS/hosts...)aliases to do the rest.
Regards
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 05:55 AM
07-17-2003 05:55 AM
Re: Systems Administration
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2003 07:24 AM
07-17-2003 07:24 AM
Re: Systems Administration
the command uname -S will use for setting the system_name it should be resolvable in the file /etc/hosts. Otherwise you can run in problems. And the hostname resultion in /etc/nsswitch.conf should be
hosts: files [NOTFOUND=continue] dns
Regards
Roland