Changeset 2241


Ignore:
Timestamp:
Jun 27, 2012, 9:56:41 PM (12 years ago)
Author:
ezyang
Message:
Updates to install documentation.
Location:
branches/fc17-dev/server/doc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/fc17-dev/server/doc/install-howto.sh

    r2230 r2241  
    247247    gem install $(gem list --no-version | grep -Fxvf - gem.txt)
    248248    # Also, we need to install the old rails version
    249     gem install -v=2.3.5 rails
     249    gem install -v=2.3.14 rails
    250250# These are in /usr
    251251
     
    343343# Enable lots of services (currently in /etc checkout)
    344344    systemctl enable openafs-client.service
    345     systemctl enable dirsrv.service
     345    systemctl enable dirsrv.target
    346346    systemctl enable nslcd.service
    347347    systemctl enable nscd.service
     
    351351
    352352    systemctl start openafs-client.service
    353     systemctl start dirsrv.service
     353    systemctl start dirsrv.target
    354354    systemctl start nslcd.service
    355355    systemctl start nscd.service
     
    374374# (Note: this errors on XeTeX which is ok.)
    375375    fmtutil-sys --all
     376
     377# Check for unwanted setuid/setgid binaries
     378    find / -xdev -not -perm -o=x -prune -o -type f -perm /ug=s -print | grep -Fxvf /etc/scripts/allowed-setugid.list
     379
     380# Stop /etc/resolv.conf from getting repeatedly overwritten by
     381# purging DNS servers from ifcfg-eth0 and ifcfg-eth1
     382    vim /etc/sysconfig/network-scripts/ifcfg-eth0
     383    vim /etc/sysconfig/network-scripts/ifcfg-eth1
    376384
    377385# Fix etc by making sure none of our config files got overwritten
  • branches/fc17-dev/server/doc/install-ldap

    r2230 r2241  
     1# b
    12# To set up a new LDAP server:
    23
     
    1415
    1516# Move the schema back
    16 cp -R /etc/dirsrv/slapd-scripts.bak/{.svn,*} /etc/dirsrv/slapd-scripts
     17cp -R /etc/dirsrv/slapd-scripts.bak/* /etc/dirsrv/slapd-scripts
    1718rm -Rf /etc/dirsrv/slapd-scripts.bak
    1819
    1920# Check and make sure the sysconfig references the correct keytab
    20 /etc/sysconfig/dirsrv-scripts
     21svn revert /etc/sysconfig/dirsrv-scripts
    2122
    2223# Turn dirsrv off:
     
    224225nsDS5ReplicaBindDN: uid=ldap/shining-armor.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
    225226nsDS5ReplicaBindDN: uid=ldap/golden-egg.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
     227nsDS5ReplicaBindDN: uid=ldap/miracle-cure.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
     228nsDS5ReplicaBindDN: uid=ldap/lucky-star.mit.edu,ou=People,dc=scripts,dc=mit,dc=edu
    226229nsds5ReplicaPurgeDelay: 604800
    227230nsds5ReplicaLegacyConsumer: off
Note: See TracChangeset for help on using the changeset viewer.