标签:11.6 MariaDB安装 11.7/8/9 Apache安装
11.6 MariaDB安装安装Mariadb的简要步骤:
下载httpd, apr和apr-util并解压:
wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.29.tar.gz
wget http://mirrors.hust.edu.cn/apache/apr/apr-1.6.3.tar.gz
wget http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gz
tar zxvf httpd-2.4.29.tar.gz
tar zxvf apr-1.6.3.tar.gz
tar zxvf apr-util-1.5.4.tar.gz
安装apr-1.6.3:
cd /usr/local/src/apr-1.6.3
./configure --prefix=/usr/local/apr
make && make install
安装apr-util-1.5.4:
cd /usr/local/src/apr-util-1.5.4
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make && make install
安装httpd-2.4.29:
cd /usr/local/src/httpd-2.4.29
./configure \ //这里的反斜杠是脱义字符,加上它我们可以把一行命令写成多行
--prefix=/usr/local/apache2.4\
--with-apr=/usr/local/apr\
--with-apr-util=/usr/local/apr-util\
--enable-so\ //表示支持动态扩展模块
--enable-mods-shared=most
make & make install
安装过程中遇到的问题:
标签:11.6 MariaDB安装 11.7/8/9 Apache安装
原文地址:http://blog.51cto.com/13517946/2073603