
16th August 2006, 18:18
|
|
Junior Member
|
|
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Could not determine the server's fully qualified domain name, using 127.0.0.1
Ok I setup ISPconfig and now I am having trouble connecting to it. I am able to connect https://192.168.1.xxx:81 from on the server (fedora core 5) but not from any other computer on the network. When I restart ISPconfig i get this alert:"ispconfig_httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName." I dont know if this is part of the problem but it might be. I have opened port 81 on the firewall but I continue to get a page not displayed message. Also I have a domain name setup for the server however even on the server itself I need to put in https://192.168.1.xxx:81 and cant put in https://sitename:81 for it to work. Any suggestions are welcome. Thanks
Last edited by teedo757; 16th August 2006 at 18:20.
|

16th August 2006, 19:19
|
|
Moderator
|
|
Join Date: Dec 2005
Location: The Netherlands
Posts: 2,010
Thanks: 254
Thanked 134 Times in 120 Posts
|
|
Quote:
|
Originally Posted by teedo757
Ok I setup ISPconfig and now I am having trouble connecting to it. I am able to connect https://192.168.1.xxx:81 from on the server (fedora core 5) but not from any other computer on the network. When I restart ISPconfig i get this alert:"ispconfig_httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName." I dont know if this is part of the problem but it might be. I have opened port 81 on the firewall but I continue to get a page not displayed message. Also I have a domain name setup for the server however even on the server itself I need to put in https://192.168.1.xxx:81 and cant put in https://sitename:81 for it to work. Any suggestions are welcome. Thanks
|
Why are you hiding the xxx part of that IP if I may ask?
I mean.. If you do it for that IP you should also do it for the 127.0.0.1 IP! :-)
|

17th August 2006, 02:28
|
|
Junior Member
|
|
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
...
Please respond to the question.....127.0.0.1 is a special address that calls your own computer everyone knows that, i did not show my internal ip address for my network because that could compromise my network and allow others to know how things are setup internally. If you have an answer to the question it would be greatly appriciated if not please do not respond!
|

17th August 2006, 08:59
|
|
Moderator
|
|
Join Date: Dec 2005
Location: The Netherlands
Posts: 2,010
Thanks: 254
Thanked 134 Times in 120 Posts
|
|
Quote:
|
Originally Posted by teedo757
Ok I setup ISPconfig and now I am having trouble connecting to it. I am able to connect https://192.168.1.xxx:81 from on the server (fedora core 5) but not from any other computer on the network. When I restart ISPconfig i get this alert:"ispconfig_httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName." I dont know if this is part of the problem but it might be. I have opened port 81 on the firewall but I continue to get a page not displayed message. Also I have a domain name setup for the server however even on the server itself I need to put in https://192.168.1.xxx:81 and cant put in https://sitename:81 for it to work. Any suggestions are welcome. Thanks
|
What did you use as the fully qualified domain name when you installed ISPconfig?
|

17th August 2006, 10:13
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,888
Thanks: 693
Thanked 4,188 Times in 3,205 Posts
|
|
Quote:
|
Originally Posted by teedo757
Ok I setup ISPconfig and now I am having trouble connecting to it. I am able to connect https://192.168.1.xxx:81 from on the server (fedora core 5) but not from any other computer on the network. When I restart ISPconfig i get this alert:"ispconfig_httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName." I dont know if this is part of the problem but it might be. I have opened port 81 on the firewall but I continue to get a page not displayed message. Also I have a domain name setup for the server however even on the server itself I need to put in https://192.168.1.xxx:81 and cant put in https://sitename:81 for it to work. Any suggestions are welcome. Thanks
|
It seems you did not configure a hostanme for your server. What is the output of:
and what is in the file: /etc/hosts
|

17th August 2006, 19:34
|
|
Junior Member
|
|
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
you are right but I dont know how to name it.
[root@zuzu install_ispconfig]# hostname -f
hostname: Unknown host
/etc/hosts - contains
[root@zuzu etc]# cat hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost zuzu
Do I make the change in the /etc/hosts file to change the domain name?
|

18th August 2006, 09:08
|
|
Junior Member
|
|
Join Date: Aug 2006
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
if your going to access it on your local network,
* edit the network file under /etc/sysconfig and put HOSTNAME=[your hostname]
# cd /etc/sysconfig
# vi network
HOSTNAME=testserver <--- network file should contain this, just change the "testserver" with your choice hostname. don't forget to save.
* on your hosts file, add 192.168.1.xxx [your hostname]
# cd /etc
# vi hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost zuzu
192.168.1.xxx testserver <--- change the "testserver" with your choice hostname. don't forget to save.
* restart network service and ispconfig <--- not sure if you still have to this
# service network restart
# service ispconfig_server restart
* also add 192.168.1.xxx [your hostname] on the hosts file of the client pc or workstation that will access your ispconfig. if the client workstation o.s. is windows 2000 professional, the hosts file is located at [windows folder]\system32\drivers\etc
127.0.0.1 localhost
192.168.1.xxx testserver <--- change the "testserver" with your choice hostname. don't forget to save.
|

18th August 2006, 09:29
|
|
Junior Member
|
|
Join Date: Aug 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
"ispconfig_httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName."
not to get that alert
in
/root/ispconfig/httpd/conf/httpd.conf
i change ServerName like this:
ServerName hostname.domain.tld.
|

18th August 2006, 09:50
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,888
Thanks: 693
Thanked 4,188 Times in 3,205 Posts
|
|
To set the hostname of your server, execute these two commands:
Quote:
echo server1.example.com > /etc/hostname
/bin/hostname -F /etc/hostname
|
"server1.example.com" must be replaced with your hostname
|
|
The Following User Says Thank You to till For This Useful Post:
|
|
| Thread Tools |
|
|
| Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 22:14.
|
Recent comments
19 hours 50 min ago
1 day 48 min ago
1 day 2 hours ago
1 day 3 hours ago
1 day 4 hours ago
1 day 9 hours ago
1 day 10 hours ago
1 day 12 hours ago
2 days 1 hour ago
2 days 3 hours ago