source: trunk/packages/sipb-xen-host-master/notes @ 568

Last change on this file since 568 was 568, checked in by price, 16 years ago

remove zev's code for lack of a license

File size: 1.1 KB
Line 
1
2### for kerberos access; need keytab ###
3aptitude install krb5-user ntpdate
4cat >>/etc/ssh/sshd_config <<EOF
5# accept Kerberos
6GSSAPIAuthentication yes
7GSSAPICleanupCredentials yes
8GSSAPIKeyExchange yes
9EOF
10/etc/init.d/ssh reload
11# Set default realm to ATHENA.MIT.EDU
12printf "krb5-config\tkrb5-config/default_realm\tstring\tATHENA.MIT.EDU" | debconf-set-selections
13dpkg-reconfigure -fnoninteractive krb5-config
14# in an ideal world, all of the above is just
15#   aptitude install debathena-{ssh-server,kerberos}-config
16
17# install keytab
18# install /root/.k5login
19ntpdate
20
21### for collaboration ###
22aptitude install screen
23
24### the main event ###
25scp black-mesa:/etc/apt/sources.list.d/* /etc/apt/sources.list.d
26apt-get update
27aptitude install sipb-xen-host-master
28# or scp sx-blade-1:*.deb . && dpkg -i *.deb && apt-get -f install
29
30### clustering... ###
31## should become own package once we figure it out.
32scp OLD-HOST:/etc/cluster/cluster.conf /etc/cluster/cluster.conf
33
34aptitude install clvm cman redhat-cluster-modules-2.6-xen-amd64
35cat >>/etc/modules <<EOF
36cman
37dlm
38EOF
39
40
41# to take up the new Xen-hypervisor kernel
42# shutdown -r now
43
Note: See TracBrowser for help on using the repository browser.