I am trying to figure out why I can't get the latest Horde Groupware to
work.  I custom compiled Apache-2.4.25 and PHP-5.6.30.  I'm suspicious
of the config files for Apache especially.  I'm most worried about how
to properly configure php-fpm.  I suspect that a misconfiguration is
responsible for the manual not being readable.  Uge!

[michael@eagle ~]$ cat configapache.bash 
#!/bin/bash

./configure                     \
--prefix=/usr                   \
--sysconfdir=/etc/httpd         \
--sharedstatedir=/var/httpd/sha \
--localstatedir=/var/httpd/loc  \
--libdir=/usr/lib64/httpd       \
--enable-authnz-fcgi            \
--enable-mods-shared="all cgi"  \
--enable-mpms-shared=all        \
--enable-suexec=shared          \
--with-apr=/usr/bin/apr-1-config                \
--with-apr-util=/usr/bin/apu-1-config           \
--with-suexec-bin=/usr/lib/httpd/suexec         \
--with-suexec-caller=apache                     \
--with-suexec-docroot=/var/www                  \
--with-suexec-logfile=/var/log/httpd/suexec.log \
--with-suexec-uidmin=500                        \
--with-suexec-userdir=public_html              


[michael@eagle ~]$ 

[michael@eagle ~]$ cat configphp.bash 
#!/bin/bash

./configure --prefix=/usr \
            --sysconfdir=/etc \
            --localstatedir=/var \
            --datadir=/usr/share/php     \
            --mandir=/usr/share/man      \
            --enable-fpm                 \
            --with-fpm-user=apache       \
            --with-fpm-group=apache      \
            --with-config-file-path=/etc \
            --with-zlib                  \
            --enable-bcmath              \
            --with-bz2                   \
            --enable-calendar            \
            --enable-dba=shared          \
            --with-gdbm                  \
            --with-gmp                   \
            --enable-ftp                 \
            --with-mysqli=shared         \
            --with-pdo-mysql=shared      \
            --with-pgsql                 \
            --with-pdo-pgsql             \
            --with-gettext               \
            --enable-mbstring            \
            --with-gd                    \
            --with-openssl               \
            --with-tidy                  \
            --with-ldap                  \
            --with-readline
[michael@eagle ~]$ 


Some help getting the options right and getting the source recompiled
and into rpm packages would be very much appreciated.  My base system
is CentOS 6.8 with custom compiled Perl-5.18.1, apr-1.5.2, and apr-
util-1.5.2.  I may have borked openssl attempting to install 
opeenssl-1.0.2k from source concerned about the heartbleed bug.

CentOS could really use a tool to find and remove configuration and
program files from software that is source installed.  I hate to 
start over essentially, but it looks like I have to.

I need to find out what files were installed and where so I can
reinstall php, apr, apr-util, and apache.  I'm thinking about
installing to /usr/local.

Ultimately, I will likely have to replace CentOS 6.8 on my gateway
servers with CentOS 7.3.  Lots of work.
_______________________________________________
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug

Reply via email to