more specific grep
[mirror/dsa-wiki.git] / input / howto / new-machine.creole
1 == setup/integrate a new machine ==
2
3 Note: this is partially obsolete now that we have [[puppet|howto/puppet-setup]].  We should probably update/rework some parts.
4
5 * install ssh if it isn't there already
6 {{{
7     apt-get install ssh
8 }}}
9
10 * make apt sane
11 {{{
12     echo 'Acquire::PDiffs "false";' > /etc/apt/apt.conf.d/local-pdiff
13     echo 'APT::Install-Recommends 0;' > /etc/apt/apt.conf.d/local-recommends
14 }}}
15
16 * sane locales: (make sure there is _no_ locale defined in /etc/environment and /etc/default/locale)
17 {{{
18    echo -n > /etc/environment
19    echo -n > /etc/default/locale
20 }}}
21
22 * make debconf the same on every host: - dialog, - high
23 {{{
24     apt-get install dialog &&
25     echo "debconf debconf/priority        select high" | debconf-set-selections &&
26     echo "debconf debconf/frontend        select Dialog" | debconf-set-selections
27 }}}
28
29 * unless we want to keep it:
30 {{{
31     dpkg -l postfix | grep '^ii  postfix' && (dpkg --purge postfix && rm /etc/aliases)
32 }}}
33
34 * setup [[puppet|howto/puppet-setup]]
35
36 * on draghi, add the host to /home/sshdist/.ssh/authorized_keys and generate.conf
37 (you want the host's rsa host key there: {{{cat /etc/ssh/ssh_host_rsa_key.pub}}})
38 {{{
39     : :: draghi :: && sudo vi /home/sshdist/.ssh/authorized_keys
40     : :: draghi :: && sudo vi /etc/userdir-ldap/generate.conf
41 }}}
42 * run generate, or wait until cron runs it for you
43 {{{
44     : :: draghi :: && sudo -u sshdist ud-generate
45 }}}
46
47 * fix nsswitch for ud fu.  (you might have to restart sshd here)
48 {{{
49     sed -i -e 's/^passwd:\[[:space:]]\+compat$/passwd:         compat db/;
50               s/^group:\[[:space:]]\+compat$/group:          db compat/;
51               s/^shadow:\[[:space:]]\+compat$/shadow:         compat db/' \
52         /etc/nsswitch.conf
53     (cd / && env -i /etc/init.d/ssh restart)
54 }}}
55
56 * install userdir-ldap
57 {{{
58     apt-get update && apt-get install userdir-ldap
59 }}}
60
61 * on the host, run ud-replicate
62 {{{
63     echo draghi.debian.org,draghi,db.debian.org,db,82.195.75.106,::ffff:82.195.75.106 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAy1mAS0xIOZH9OrJZf1Wv9qYORv5Z5fmpF0o8Y4IMdS+ZzTjN1Sl8M77jaFTJbumJNs+n2CMcX8CoMemQEPBoRe20a5t3dExPQ3c7FNU0z+WIVFbu/oTTkAWGp5gCDwF3pg2QxUjqYc0X4jpv6pkisyvisij6V/VJ5G1hsIMuKqrCKYyyyiJJytfzSfRrBx2QvB5ZWQxhYeSYDoLDvuF31qUy4TLZ/HR3qZQ1cBrP9dCh5d+GQxdY9LuO6zjlnSyU64GHkyjYt3p03AKG4plD7WHX01bD0DQQ/NOFVwFhOZ63mePyridPuqBMFW39jBf4jSsewV95RE5VbY04+MY4XQ== root@draghi >> /etc/ssh/ssh_known_hosts &&
64     ud-replicate
65 }}}
66
67 * check if it worked:
68 {{{
69     id weasel
70 }}}
71
72 * install debian.org which brings you shells and much other fun
73 {{{
74     apt-get install debian.org
75 }}}
76
77 * in /etc/ssh/sshd_config:
78 ** disable the DSA hostkey, so that it only does RSA
79 ** remove old host keys:
80 ** disable X11 forwarding
81 ** Tell it to use alternate authorized_keys locations
82 ** maybe link root's auth key there:
83 {{{
84     #| HostKey /etc/ssh/ssh_host_rsa_key
85     #| X11Forwarding no
86     #| AuthorizedKeysFile /etc/ssh/userkeys/%u
87     #| AuthorizedKeysFile2 /var/lib/misc/userkeys/%u
88
89     cd /etc/ssh/ && rm -f ssh_host_dsa_key ssh_host_dsa_key.pub ssh_host_key ssh_host_key.pub &&
90     mkdir -p /etc/ssh/userkeys && ln -s /root/.ssh/authorized_keys /etc/ssh/userkeys/root &&
91     sed -i -e 's/^HostKey.*_dsa_key/# &/;
92                s/^X11Forwarding yes/X11Forwarding no/;
93                $ a AuthorizedKeysFile /etc/ssh/userkeys/%u
94                $ a AuthorizedKeysFile2 /var/lib/misc/userkeys/%u' sshd_config &&
95     (cd / && env -i /etc/init.d/ssh restart)
96 }}}
97
98 * try to login using your user and ssh key.  you should get a homedir.
99
100 * try to become root using sudo.
101
102 * disable password auth with ssh (again: once you verified you can log in and become root using keys.)
103 {{{
104     #vi /etc/ssh/sshd_config
105     #  | PasswordAuthentication no
106
107     sed -i -e 's/^PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config &&
108     (cd / && env -i /etc/init.d/ssh restart)
109 }}}
110
111 * make ca-certificates sane:  (choose to *not* trust new certs, and we only want the spi cert activated)
112 {{{
113     echo "ca-certificates ca-certificates/trust_new_crts  select no" | debconf-set-selections
114     sed -i -e 's/^[^#!].*/!&/; s#^!spi-inc.org/spi-cacert-2008.crt#spi-inc.org/spi-cacert-2008.crt#' /etc/ca-certificates.conf
115     dpkg-reconfigure ca-certificates
116 }}}
117
118 * Add debian-admin@debian.org to root in /etc/aliases
119 {{{
120         if ! egrep '^root:' /etc/aliases > /dev/null; then
121                 echo "root: debian-admin@debian.org" >> /etc/aliases
122         elif ! egrep '^root:.*debian-admin@debian.org' /etc/aliases > /dev/null; then
123                 sed -i -e 's/^root: .*/&, debian-admin@debian.org/' /etc/aliases
124         fi
125         newaliases
126 }}}
127
128 * sane default editor
129 {{{
130     apt-get install vim && update-alternatives --set editor /usr/bin/vim.basic
131 }}}
132
133 * add to munin on spohr
134 {{{
135     : :: spohr :: && sudo vi /etc/munin/munin.conf
136 }}}
137
138 * if it is a HP Proliant, or has other management fu, read [[howto/ilo-https]]
139
140 * edit dedication into in $DSA-PUPPET/modules/debian-org/misc/local.yaml
141
142 * add to nagios
143
144 * add host to ldap: ud-host -a $USER -h ....
145
146 -- weasel, Wed, 04 Jun 2008 20:52:56 +0200