Ignore:
Timestamp:
Oct 23, 2010, 7:56:19 AM (13 years ago)
Author:
ezyang
Message:
Documentation updates.
Location:
branches/fc13-dev/server/doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/fc13-dev/server/doc/install-fedora

    r1668 r1692  
    11Installing a Scripts guest on a Xen host
    22----------------------------------------
     3
     4You 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
    38
    49We use Kickstart to to initial Fedora configuration.  Installing a new
  • branches/fc13-dev/server/doc/install-howto.sh

    r1690 r1692  
    3434
    3535# Take updates, reboot if there's a kernel update.
    36 
    37     yum update
     36    yum update -y
    3837
    3938# Get rid of network manager
    4039    yum remove NetworkManager
    41 
    42 # Check out the scripts.mit.edu svn repository. Configure svn not to cache
    43 # credentials.
    4440
    4541# Copy over root's dotfiles from one of the other machines.
     
    149145    yum install -y --skip-broken $(cat packages.txt)
    150146
     147# Make sure sendmail isn't installed
     148    yum remove sendmail
     149
    151150# Check which packages are installed on your new server that are not
    152151# in the snapshot, and remove ones that aren't needed for some reason
     
    200199#   want to be able to write to ~/.python-eggs.  (Also makes sourcediving
    201200#   easier.)
    202     cat /usr/lib/python2.6/site-packages/easy-install.pth
     201cat /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
    203203# - Look at `gem list` for Ruby gems.
    204204#   Again, use 'yum search' and prefer RPMs, but failing that, 'gem install'.
  • branches/fc13-dev/server/doc/install-ldap

    r1680 r1692  
    3030nsslapd-ldapifilepath: /var/run/dirsrv/slapd-scripts.socket
    3131nsslapd-ldapilisten: on
     32nsslapd-syntaxcheck: off
    3233
    3334# Add these blocks
     
    4950- Uncomment and modify in /etc/sysconfig/dirsrv: KRB5_KTNAME=/etc/dirsrv/keytab ; export KRB5_KTNAME
    5051- chown fedora-ds:fedora-ds /var/run/dirsrv
     52- chown fedora-ds /etc/dirsrv/keytab
    5153- chmod 755 /var/run/dirsrv
    5254- /sbin/service dirsrv start
     
    193195nsDS5ReplicaBindDN: uid=ldap/better-mousetrap.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
    194196nsDS5ReplicaBindDN: uid=ldap/old-faithful.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
    195 # ADD SERVERS HERE AS YOU ADD NEW SERVERS
     197nsDS5ReplicaBindDN: uid=ldap/shining-armor.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
    196198nsds5ReplicaPurgeDelay: 604800
    197199nsds5ReplicaLegacyConsumer: off
Note: See TracChangeset for help on using the changeset viewer.