Moon_LServer Linux下一键搭建Apache+PHP+MySQL+Zend+PHPMyAdmin+GD库的软件攻略
准备工作
- 下载Moon_LServer
- 确认Linux环境已安装
安装Moon_LServer
- 确认下载Moon_LServer的压缩包
bash
$ ls Moon_LServer.tar.gz
- 解压Moon_LServer压缩包
bash
$ tar -xvf Moon_LServer.tar.gz
- 进入Moon_LServer目录
bash
$ cd Moon_LServer
- 赋予Moon_LServer.sh脚本执行权限
bash
$ chmod +x Moon_LServer.sh
- 运行Moon_LServer.sh脚本
bash
$ ./Moon_LServer.sh
-
按照提示输入相关信息,包括:
-
Apache、PHP、MySQL、Zend等安装路径
- MySQL的账号和密码
-
PHPMyAdmin的账号和密码
-
出现以下提示后,安装成功,访问localhost即可查看。
bash
Congratulations! Moon_LServer installed successfully!
示例说明
示例1
假设需要安装版本为5.1的MySQL。
- 下载MySQL5.1
bash
$ wget https://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.73.tar.gz
- 解压MySQL
bash
$ tar -xvf mysql-5.1.73.tar.gz
- 进入MySQL目录并编译
bash
$ cd mysql-5.1.73
$ ./configure --prefix=/usr/local/mysql --with-mysqld-user=mysql
$ make && make install
- 在Moon_LServer.sh脚本中设置MySQL安装路径
bash
export MYSQL_PATH=/usr/local/mysql
- 运行Moon_LServer.sh脚本
bash
$ ./Moon_LServer.sh
示例2
假设需要安装PHP5.6,并启用mysqli扩展。
- 下载PHP5.6
bash
$ wget http://cn2.php.net/distributions/php-5.6.23.tar.gz
- 解压PHP
bash
$ tar -xvf php-5.6.23.tar.gz
- 进入PHP目录并编译(启用mysqli扩展)
bash
$ cd php-5.6.23
$ ./configure --prefix=/usr/local/php \
--with-apxs2=/usr/local/apache/bin/apxs \
--with-mysql=/usr/local/mysql \
--with-mysqli=/usr/local/mysql/bin/mysql_config \
--enable-mbstring \
--with-curl \
--with-gd \
--enable-mysqli
$ make && make install
- 在Moon_LServer.sh脚本中设置PHP安装路径
bash
export PHP_PATH=/usr/local/php
- 运行Moon_LServer.sh脚本
bash
$ ./Moon_LServer.sh
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Moon_LServer Linux下一键搭建Apache+PHP+MySQL+Zend+PHPMyAdmin+GD库的软件 - Python技术站