Changes between Initial Version and Version 1 of configuring_a_geexblox_server


Ignore:
Timestamp:
Apr 21, 2012, 9:06:16 PM (13 years ago)
Author:
Ross
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • configuring_a_geexblox_server

    v1 v1  
     1== Configuring geeblox server ==
     2
     3You might run into a few problems with geeblox server configuration.  Using our freepuppet-helper for both geeblox servers fela and femi threw one or both of these error:
     4
     5{{{
     6remote: Could not retrieve hostname: getaddrinfo: Name or service not known
     7remote: warning: Could not retrieve fact fqdn
     8}}}
     9
     10It seems that the default configurations of these servers require us to modify the dns and host settings of the server itself.  Here's are files to check, if you run into these errors.
     11
     12 * /etc/hostname
     13 * /etc/hosts
     14 * /etc/resolv.conf
     15
     16On fela this is what they look like respectively, you should replace fela below with the actual server name and correct ip address.
     17
     18'''/etc/hostname'''
     19
     20{{{
     21fela
     22}}}
     23
     24'''/etc/hosts'''
     25
     26{{{
     27127.0.0.1       localhost
     2874.119.238.34   fela.mayfirst.org       fela
     29
     30# The following lines are desirable for IPv6 capable hosts
     31::1     ip6-localhost ip6-loopback
     32fe00::0 ip6-localnet
     33ff00::0 ip6-mcastprefix
     34ff02::1 ip6-allnodes
     35ff02::2 ip6-allrouters
     36}}}
     37
     38'''/etc/resolv.conf'''
     39
     40{{{
     41nameserver 4.2.2.1
     42}}}
     43
     44/etc/resolve.conf should only look like this for initial configuration.  Puppet should change those values to the appropriate values.  This is only for getting the initial puppet configurations working properly.