Changeset 1692 for branches/fc13-dev
- Timestamp:
- Oct 23, 2010, 7:56:19 AM (14 years ago)
- Location:
- branches/fc13-dev/server/doc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/fc13-dev/server/doc/install-fedora
r1668 r1692 1 1 Installing a Scripts guest on a Xen host 2 2 ---------------------------------------- 3 4 You need to create the volumes to use: 5 6 lvcreate -n $MACHINE-root --size 50.00G $HOST 7 lvcreate -n $MACHINE-swap --size 10.00G $HOST 3 8 4 9 We use Kickstart to to initial Fedora configuration. Installing a new -
branches/fc13-dev/server/doc/install-howto.sh
r1690 r1692 34 34 35 35 # Take updates, reboot if there's a kernel update. 36 37 yum update 36 yum update -y 38 37 39 38 # Get rid of network manager 40 39 yum remove NetworkManager 41 42 # Check out the scripts.mit.edu svn repository. Configure svn not to cache43 # credentials.44 40 45 41 # Copy over root's dotfiles from one of the other machines. … … 149 145 yum install -y --skip-broken $(cat packages.txt) 150 146 147 # Make sure sendmail isn't installed 148 yum remove sendmail 149 151 150 # Check which packages are installed on your new server that are not 152 151 # in the snapshot, and remove ones that aren't needed for some reason … … 200 199 # want to be able to write to ~/.python-eggs. (Also makes sourcediving 201 200 # easier.) 202 cat /usr/lib/python2.6/site-packages/easy-install.pth 201 cat /usr/lib/python2.6/site-packages/easy-install.pth | grep "^./" | cut -c3- | cut -f1 -d- . egg.txt 202 cat egg.txt | xargs easy_install -Z 203 203 # - Look at `gem list` for Ruby gems. 204 204 # Again, use 'yum search' and prefer RPMs, but failing that, 'gem install'. -
branches/fc13-dev/server/doc/install-ldap
r1680 r1692 30 30 nsslapd-ldapifilepath: /var/run/dirsrv/slapd-scripts.socket 31 31 nsslapd-ldapilisten: on 32 nsslapd-syntaxcheck: off 32 33 33 34 # Add these blocks … … 49 50 - Uncomment and modify in /etc/sysconfig/dirsrv: KRB5_KTNAME=/etc/dirsrv/keytab ; export KRB5_KTNAME 50 51 - chown fedora-ds:fedora-ds /var/run/dirsrv 52 - chown fedora-ds /etc/dirsrv/keytab 51 53 - chmod 755 /var/run/dirsrv 52 54 - /sbin/service dirsrv start … … 193 195 nsDS5ReplicaBindDN: uid=ldap/better-mousetrap.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu 194 196 nsDS5ReplicaBindDN: uid=ldap/old-faithful.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu 195 # ADD SERVERS HERE AS YOU ADD NEW SERVERS 197 nsDS5ReplicaBindDN: uid=ldap/shining-armor.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu 196 198 nsds5ReplicaPurgeDelay: 604800 197 199 nsds5ReplicaLegacyConsumer: off
Note: See TracChangeset
for help on using the changeset viewer.