![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I change domain name from shell? | lucas | IP Networking | 2 | 05-12-2008 07:14 AM |
| How do I change domain name from shell? | lucas | UNIX for Dummies Questions & Answers | 3 | 05-08-2008 11:17 PM |
| Domain name | bang_dba | SUN Solaris | 0 | 07-04-2007 07:12 AM |
| Domain | wcc9968 | UNIX for Dummies Questions & Answers | 1 | 11-29-2000 07:40 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
change dns (domain name)
hi gurus,
need to check other than the hosts file, what else i need to change after we have changed the domain name in our company. currently, we are using olddnsname.com and will change it to newdnsname.com. i am not sure where else in solaris i need to take a look. please advise. thank you in advance. regards, kim |
| Forum Sponsor | ||
|
|
|
|||
|
What to change
Solaris provides extensive control over the means of looking up various name services including DNS. If DNS resolution of hostnames has not been setup, the nsswitch.conf file must be configured in addition to resolv.conf.
Once you have configured the DNS client settings in Solaris, you need to alter the /etc/nsswitch.conf file. This name services configuration file controls a variety of lookup types with several services including NIS/NIS+ and LDAP. To configure your host to perform hostname lookups with DNS, modify the line that starts with hosts: to include the keyword dns. For example, if your /etc/nsswitch.conf file hosts line looks like: hosts: files change it to read: hosts: files dns The order of keywords on this line indicates the order in which Solaris references the name services. The keyword files represents the /etc/hosts file. |