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

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

update host-master package and notes

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