Everytime update or install ISPConfig3 i see 64.99.64.32. Why?

Discussion in 'Installation/Configuration' started by rosie, Dec 16, 2009.

  1. rosie

    rosie New Member

    Do fresh install or update ISPConfig3, all the configuration files have the IP of 64.99.64.32 everywhere, i dont' know why!

    with Postfix:

    Code:
    [root@rosie postfix]# cat mysql-virtual_forwardings.cf
    user = ispconfig
    password = 2c321a84ca0c5eb49be5cf0c5bfe5522
    dbname = ispcofnfig_db
    table = mail_forwarding
    select_field = destination
    where_field = source
    additional_conditions = and active = 'y' and server_id = 1
    hosts = 64.99.64.32
    Code:
    [root@rosie postfix]# grep -r '64.99.64.32' .
    ./mysql-virtual_forwardings.cf:hosts = 64.99.64.32
    ./mysql-virtual_recipient.cf:hosts = 64.99.64.32
    ./mysql-virtual_recipient.cf~:hosts = 64.99.64.32
    ./mysql-virtual_relaydomains.cf:hosts = 64.99.64.32
    ./mysql-virtual_client.cf:hosts = 64.99.64.32
    ./mysql-virtual_forwardings.cf~:hosts = 64.99.64.32
    ./mysql-virtual_email2email.cf:hosts = 64.99.64.32
    ./mysql-virtual_mailboxes.cf~:hosts = 64.99.64.32
    ./mysql-virtual_client.cf~:hosts = 64.99.64.32
    ./mysql-virtual_email2email.cf~:hosts = 64.99.64.32
    ./mysql-virtual_domains.cf~:hosts = 64.99.64.32
    ./mysql-virtual_sender.cf~:hosts = 64.99.64.32
    ./mysql-virtual_transports.cf:hosts = 64.99.64.32
    ./mysql-virtual_sender.cf:hosts = 64.99.64.32
    ./mysql-virtual_relaydomains.cf~:hosts = 64.99.64.32
    ./mysql-virtual_transports.cf~:hosts = 64.99.64.32
    ./mysql-virtual_domains.cf:hosts = 64.99.64.32
    ./mysql-virtual_mailboxes.cf:hosts = 64.99.64.32
    with Pure-ftp:

    Code:
    [root@rosie pure-ftpd]# cat pureftpd-mysql.conf
    ##############################################
    #                                            #
    # Sample Pure-FTPd Mysql configuration file. #
    # See README.MySQL for explanations.         #
    #                                            #
    ##############################################
    
    
    # Optional : MySQL server name or IP. Don't define this for unix sockets.
    
    MYSQLServer     64.99.64.32
    
    
    # Optional : MySQL port. Don't define this if a local unix socket is used.
    
    # MYSQLPort       3306
    
    .....etc....
    and my localhost:
    Code:
    [root@rosie pure-ftpd]# ping localhost
    PING localhost.com (64.99.64.32) 56(84) bytes of data.
    64 bytes from 64.99.64.32: icmp_seq=1 ttl=236 time=324 ms
    64 bytes from 64.99.64.32: icmp_seq=2 ttl=236 time=322 ms
    64 bytes from 64.99.64.32: icmp_seq=3 ttl=236 time=322 ms
    my hosts file:
    Code:
    [root@rosie etc]# cat hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    192.168.1.84    rosie.com    rosie
    127.0.0.1     rosie.com  rosie
    ::1           localhost6.localdomain6 localhost6

    How can I get rid of 64.99.64.32? I dont' know where's it from! Thanks!
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    This is the IP of your hostname. I guess you entered a wrong mysql hostname as you installed ispconfig, the mysql hostname has to be "localhost" as suggested by the installer.

    Additionally, your hosts file is wrong, the line:

    127.0.0.1 rosie.com rosie

    has to be:

    127.0.0.1 localhost localhost.localdomain
     
  3. rosie

    rosie New Member

    Solved.

    Thanks for your support.

    The problem is the content of file /etc/hosts. I corrected it as you told. then everything works well. Thanks!
     

Share This Page