• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Hostname

V

VengfulSquirrel

Guest
This could be more of a linux question than a plesk question but I keep getting this error when trying to upgrade plesk 7.5.4 to plesk 8.0 in suse 9.3. Does my host name have to be tied to a valid ip address? Right now I am trying to use 192.168.1.35. And I can ping my host name so I don't see how it could not be resolved... What am I doing wrong?

Unable to resolve host name.
Please specify the host name in the /etc/hosts file
or specify DNS configuration in the /etc/resolv.conf file on your system.

-Ian
 
Code:
www:/usr/local/psa # cat /etc/hosts
127.0.0.1       localhost
192.168.1.35 www localdomain
www:/usr/local/psa # cat /etc/resolv.conf
domain localdomain
nameserver ***.***.***.***
nameserver ***.***.***.***
www:/usr/local/psa #

OR

Code:
www:~ # cat /etc/hosts /etc/resolv.conf
127.0.0.1       localhost
192.168.1.35 [url]www.localdomain[/url] localdomain
domain localdomain
nameserver ***.***.***.***
nameserver ***.***.***.***
www:~ #

I *'ed out the dns servers because I am illogically paranoid. Does the host name need to be resolved through strictly the dns servers?
 
Here's how they should be. Keep in mind that a host name is not a www

/etc/hosts
_____________________________________
127.0.0.1 localhost.localdomain localhost
192.168.1.35 host.mydomainname.com host
_____________________________________

/etc/resolve.conf
_____________________________________
nameserver ***.***.***.**1
nameserver ***.***.***.**2
_____________________________________

Then a dns "A" entry should be made for host.mydomainname.com

host.mydomainname.com A 192.168.1.35
 
Back
Top