共计 1757 个字符,预计需要花费 5 分钟才能阅读完成。
因为环境的迁移, 我们将 SVN 由 CentOS 6.8 迁移至 CentOS 7.3,原先的 httpd-2.2.15 已经升级为 httpd-2.4.6, 通过 yum 安装 httpd mod_auth_mysql 在 CentOS 7.3 已经不支持了。
1. 环境准备
[root@Web245 ~]# cat /etc/RedHat-release
CentOS Linux release 7.3.1611 (Core)
[root@Web245 ~]# uname -an
Linux Web245 3.10.0-514.6.1.el7.x86_64 #1 SMP Wed Jan 18 13:06:36 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
[root@Web245 ~]# yum -y install httpd httpd-devel mariadb mariadb-libs mariadb-devel subversion mod_dav_svn mod_ssl patch
2. 文件下载及准备
mod_auth_mysql 项目地址
https://sourceforge.net/projects/modauthmysql
apache22.diff 补丁地址
https://sourceforge.net/p/modauthmysql/patches/7/
wget https://nchc.dl.sourceforge.net/project/modauthmysql/modauthmysql/3.0.0/mod_auth_mysql-3.0.0.tar.gz
wget https://sourceforge.net/p/modauthmysql/patches/_discuss/thread/efda3a06/c5a7/attachment/apache22.diff
3.mod_auth_mysql 编译及安装
tar zxf mod_auth_mysql-3.0.0.tar.gz
cd mod_auth_mysql-3.0.0
# 对模块打补丁
patch -p0 < ../apache22.diff
修改源码
908 行: 由[return r->connection->remote_ip;]变为[return r->connection->client_ip;]
1273 行: 由[const apr_array_header_t *reqs_arr = ap_requires(r);]变为[const apr_array_header_t *reqs_arr = apr_table_elts(r->headers_in);]
sed -i ‘s#return r->connection->remote_ip;#return r->connection->client_ip;#g’ mod_auth_mysql.c
sed -i ‘s#ap_requires(r)#apr_table_elts(r->headers_in)#g’ mod_auth_mysql.c
编译
apxs -c -L/usr/lib64/mysql -I/usr/include/mysql -lmysqlclient -lm -lz mod_auth_mysql.c
若出现以下错误
/usr/bin/ld: cannot find -lmysqlclient
collect2: error: ld returned 1 exit status
apxs:Error: Command failed with rc=65536
则可能是路径指错了
apxs -c -L/usr/lib/mysql -I/usr/include/mysql -lmysqlclient -lm -lz mod_auth_mysql.c
修改以上红色部分为 /usr/lib64/mysql 即可
安装
apxs -i mod_auth_mysql.la
################################################################
以上补丁部分也可以直接使用 apache2.4 的补丁
https://sourceforge.net/p/modauthmysql/patches/13/
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-02/140657.htm