博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lamp环境安装shell脚本
阅读量:5052 次
发布时间:2019-06-12

本文共 2758 字,大约阅读时间需要 9 分钟。

cd /lamp/libxml2-2.6.30 ./configure --prefix=/gxlweb/lamp/libxml2/ make make install cd /lamp/libmcrypt-2.5.8 ./configure --prefix=/gxlweb/lamp/libmcrypt/ make make install cd /lamp/libmcrypt-2.5.8/libltdl ./configure --enable-ltdl-install make make install cd /lamp/zlib-1.2.3 ./configure make make install cd /lamp/libpng-1.2.31 ./configure --prefix=/gxlweb/lamp/libpng/ make make install mkdir /gxlweb/lamp/jpeg6 mkdir /gxlweb/lamp/jpeg6/bin mkdir /gxlweb/lamp/jpeg6/lib mkdir /gxlweb/lamp/jpeg6/include mkdir -p /gxlweb/lamp/jpeg6/man/man1 cd /lamp/jpeg-6b ./configure --prefix=/gxlweb/lamp/jpeg6/ --enable-shared --enable-static make make install cd /lamp/freetype-2.3.5 ./configure --prefix=/gxlweb/lamp/freetype/ make make install cd /lamp/autoconf-2.61 ./configure make make install cd /lamp/gd-2.0.35 ./configure --prefix=/gxlweb/lamp/gd2/ --with-jpeg=/gxlweb/lamp/jpeg6/ --with-freetype=/gxlweb/lamp/freetype/ make make install cd /lamp/httpd-2.2.9 ./configure --prefix=/gxlweb/lamp/apache2/ --sysconfdir=/etc/httpd/ --with-included-apr --disable-userdir --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-static-support make make install /gxlweb/lamp/apache2/bin/apachectl start echo "/gxlweb/lamp/apache2/bin/apachectl start" >> /etc/rc.d/rc.sysinit cd /lamp/ncurses-5.6 ./configure --with-shared --without-debug --without-ada --enable-overwrite make make install groupadd mysql useradd -g mysql mysql cd /lamp/mysql-5.0.41 ./configure --prefix=/gxlweb/lamp/mysql/ --with-extra-charsets=all make make install cp support-files/my-medium.cnf /etc/my.cnf /gxlweb/lamp/mysql/bin/mysql_install_db --user=mysql chown -R root /gxlweb/lamp/mysql chown -R mysql /gxlweb/lamp/mysql/var chgrp -R mysql /gxlweb/lamp/mysql /gxlweb/lamp/mysql/bin/mysqld_safe  --user=mysql & cp /lamp/mysql-5.0.41/support-files/mysql.server /etc/rc.d/init.d/mysqld chown root.root /etc/rc.d/init.d/mysqld chmod 755 /etc/rc.d/init.d/mysqld chkconfig --add mysqld chkconfig --list mysqld chkconfig --levels 245 mysqld off cd /lamp/php-5.2.6 ./configure --prefix=/gxlweb/lamp/php/ --with-config-file-path=/gxlweb/lamp/php/etc/ --with-apxs2=/gxlweb/lamp/apache2/bin/apxs --with-mysql=/gxlweb/lamp/mysql/ --with-libxml-dir=/gxlweb/lamp/libxml2/ --with-jpeg-dir=/gxlweb/lamp/jpeg6/ --with-freetype-dir=/gxlweb/lamp/freetype/ --with-gd=/gxlweb/lamp/gd2/ --with-mcrypt=/gxlweb/lamp/libmcrypt/ --with-mysqli=/gxlweb/lamp/mysql/bin/mysql_config --enable-soap --enable-mbstring=all --enable-sockets make make install cp php.ini-dist /gxlweb/lamp/php/etc/php.ini echo "Addtype application/x-httpd-php .php .phtml" >> /etc/httpd/httpd.conf /gxlweb/lamp/apache2/bin/apachectl restart

转载于:https://www.cnblogs.com/gxldan/archive/2011/09/27/4066719.html

你可能感兴趣的文章
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
oracle连接的三个配置文件(转)
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
二叉树的遍历问题总结
查看>>
聊天室(C++客户端+Pyhton服务器)_1.框架搭设
查看>>
pytho logging
查看>>
Python内置函数(29)——help
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
对Feature的操作插入添加删除
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
WCF 配置文件
查看>>
oracle导出/导入 expdp/impdp
查看>>
2018.11.15 Nginx服务器的使用
查看>>