Linux Apache php MySQL GD PHPWind 集成环境配置(2)

8.安装gd
cd ../gd-2.0.15gif
./configure --prefix=/usr/local/gd2 --with-png=/usr/local/libpng2 --with-jpeg=/usr/local/jpeg6
make
make install

9.安装 zend
cp -R ../Zend /usr/local

10.创建 mmcache 目录
mkdir /tmp/mmcache
chmod 777 /tmp/mmcache

11.进入php-4.4.1目录,编译并安装php,安装步骤基本如下:./configure -- make -- make install,注意./configure,这是编译的关键
cd ../php-4.4.1
./configure --quiet --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-MySQL=/usr/local/mysql --with-xml
--with-zlib --with-gd=/usr/local/gd2 --with-freetype-dir=/usr/local/freetype2 --enable-memory-limit --enable-mbstring --with
-config-file-path=/usr/local/Zend/etc
make
make install
#替换apache 的配置文件
rm -f /usr/local/apache/conf/httpd.conf
cp ../httpd.conf /usr/local/apache/conf
#复制 phpwind 目录并设置属性
cp -R ../phpwind /home
chmod 777 /home/phpwind/image
chmod 777 /home/phpwind/image/upload
chmod 777 /home/phpwind/image/cn_img
chmod -R 777 /home/phpwind/template
chmod -R 777 /home/phpwind/data
chmod -R 777 /home/phpwind/htm_data
chmod -R 777 /home/phpwind/attachment
#复制 phpmyadmin 目录
cp -R ../phpmyadmin /home
#添加apache和mysql为自启动程序
rm -f /etc/rc.d/init.d/httpd
rm -f /etc/rc.d/init.d/mysql
cp ../httpd /etc/rc.d/init.d
chmod 755 /etc/rc.d/init.d/httpd
cp ../mysql /etc/rc.d/init.d
chmod 755 /etc/rc.d/init.d/mysql
#更新系统服务
chkconfig --del httpd
chkconfig --del mysql
chkconfig --add httpd
chkconfig --add mysql

12.启动apache
/usr/local/apache/bin/httpd -k start
至此,PHPWind LAMP安装过程全部结束.访问(或ip地址)/phpwind/index.php,享受自己的成果吧。

卸载软件步骤: 在命令行界面,切换到phpwind-lamp-1.0目录,运行 sh uninstall.sh 即可。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyjzdf.html