IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 26, 2005, 3:10:00 PM (21 years ago)
Author:
jhoblitt
Message:

add lib/Nebulous/Server/Config.pm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/docs/setup.txt

    r4804 r4889  
    3737
    3838Apache::DBI >= '0.97' is required for connect_on_init() to work under mod_perl >= 2.0.1
     39
     40=head4 removing Apache on RHEl3
     41
     42As C<root>:
     43
     44    rpm -e \
     45    httpd-2.0.46-46.2.ent \
     46    httpd-devel-2.0.46-46.2.ent \
     47    redhat-config-httpd-1.1.0-4.30.2 \
     48    mod_perl-1.99_09-10.ent \
     49    mod_authz_ldap-0.22-5 \
     50    mod_auth_pgsql-2.0.1-4.ent \
     51    mod_python-3.0.3-5.ent \
     52    mod_auth_mysql-20030510-2.ent \
     53    mod_ssl-2.0.46-46.2.ent \
     54    webalizer-2.01_10-15.ent \
     55    mod_perl-1.99_09-10.ent \
     56    mod_auth_pgsql-2.0.1-4.ent \
     57    mod_python-3.0.3-5.ent \
     58    mod_auth_mysql-20030510-2.ent \
     59    mod_ssl-2.0.46-46.2.ent \
     60    squirrelmail-1.4.3a-11.EL3 \
     61    php-4.3.2-25.ent \
     62    php-imap-4.3.2-25.ent \
     63    php-ldap-4.3.2-25.ent \
     64    php-mysql-4.3.2-25.ent \
     65    php-odbc-4.3.2-25.ent \
     66    php-pgsql-4.3.2-25.ent
     67
     68    rm -rf /etc/httpd
     69
     70=head4 installing Apache2 from source
     71
     72    tar -jxvf httpd-2.0.54.tar.bz2
     73    cd httpd-2.0.54
     74    ./configure \
     75    --disable-suexec \
     76    --with-perl=/usr/bin/perl \
     77    --with-port=80 \
     78    --with-program-name=apache2 \
     79    --with-devrandom=/dev/urandom \
     80    --prefix           /usr \
     81    --exec_prefix      /usr \
     82    --bindir           /usr/bin \
     83    --sbindir          /usr/sbin \
     84    --libdir           /usr/lib \
     85    --libexecdir       /usr/lib/apache2/modules \
     86    --mandir           /usr/share/man \
     87    --infodir          /usr/share/info \
     88    --includedir       /usr/include/apache2 \
     89    --datadir          /var/www/localhost \
     90    --sysconfdir       /etc/apache2/conf \
     91    --localstatedir    /var
     92    make
     93    su
     94    make install
     95    exit
     96    cd ..
     97
     98    tar -zxvf mod_perl-2.0.1.tar.gz
     99    cd mod_perl-2.0.1
     100    perl Makefile.PL
     101    (apxs = /usr/sbin/apxs)
     102    make
     103    su
     104    make install
     105    echo "LoadModule perl_module /usr/lib/apache2/modules/mod_perl.so" >> /etc/apache2/conf/apache2.conf
     106    exit
     107
     108    apachectl configtest
     109    Syntax OK
    39110
    40111=head3 Common Apache Setup
Note: See TracChangeset for help on using the changeset viewer.