mysql+httpd+gd+php+zend

2016-01-29 18:12 8 1 收藏

mysql+httpd+gd+php+zend,mysql+httpd+gd+php+zend

【 tulaoshi.com - Linux 】


mysql+httpd+gd+php+zend的安装
安装mysql
shell> groupadd mysql shell> useradd -g mysql mysql shell> cd /usr/local shell> gunzip < /PATH/TO/MYSQL-VERSION-OS.tar.gz | tar xvf - shell> ln -s FULL-PATH-TO-MYSQL-VERSION-OS mysql shell> cd mysql shell> scripts/mysql_install_db --user=mysql shell> chown -R root . shell> chown -R mysql data shell> chgrp -R mysql . shell> bin/mysqld_safe --user=mysql &
修改MYSQL口令mysql>set password for root@localhost=password('mabin');
修改mysql 连接权限GRANT ALL PRIVILEGES ON *.* TO root@192.168.1.4 IDENTIFIED BY '1123456' WITH GRANT OPTION;
cp /etc/my.cnf /var/lib/my.cnf
安装httpdtar zxvf httpd-2.0.52.tar.gzcd httpd-2.0.52./configure --prefix=/var/server/apache --enable-module=so --enable-shared=max --enable-somakemake installcd ..
安装libjpeghttp://freeware.sgi.com/source/libjpeg/tar zxvf libjpeg-6b.tar.gzcd jpeg-6bmkdir -p /usr/man/man1./configure --enable-static --enable-shared --prefix=/usrmakemake install

安装linpnghttp://www.libpng.org/pub/png/libpng.htmltar xvf libpng-1.2.5.tarcd libpng-1.2.5cp scripts/makefile.std makefilemake make install
安装GDhttp://www.boutell.com/gd/http/tar zxvf gd-2.0.28.tar.gz cd gd-2.0.28makemake install
安装PHPtar zxvf php-4.3.9.tar.gzcd php-4.3.9./configure --with-mysql --with-apxs2=/var/server/apache/bin/apxs --with-gd --with-zlib --enable-versioning --with-jpeg-dir=/var/server --disable-debug --enable-track-varsmakemake installcp php.ini-dist /usr/local/lib/php.inicd ..
在htttpd.conf加AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps AddType application/x-httpd-php .php3
加入默认首页DirectoryIndex index.php
加入默认中文AddDefaultCharset gb2312
安装zendhttp://www.zend.com/store/getfreefile.php?pid=13&zbid=816tar zxvf ZendOptimizer-2.5.5-linux-glibc21-i386.tar.gzcd ZendOptimizer-2.5.5-linux-glibc21-i386./install.sh

来源:http://www.tulaoshi.com/n/20160129/1504833.html

延伸阅读
标签: PHP
      将PHP和MYSQL合理且有效的结合在一起可以制作出精致的数据库网站。MYSQL是一种小型的,紧密的数据服务器,支持标准SQL。它在UNIX和WINDOWS环境下都能够使用。     PHP和MYSQL都是免费的开放源码。它们的结合可以在WINDOWS中发展,在UNIX中做服务。PHP也支持其他一些数据库包括PostgreSQL. 下面有...
标签: PHP
       <?   if(!$session && !$scid) {   $session = md5(uniqid(rand()));   SetCookie("scid", "$session", time() + 14400);   } /* last number is expiration time in seconds, 14400 sec = 4 hrs */      class Cart {  ...
标签: PHP
本文介绍堪称Web数据库黄金组合的PHP/MySQL如何构筑一个网络数据库应用的方法,PHP是一个类似微软ASP的服务器端的嵌入式超文本处理语言,是建立动态网站的强大工具。而MySQL是一个轻型SQL数据库服务器,可运行在多种平台上,包括Windows NT和Linux,它还有一个GPL版本,MySQL被认为是建立数据库驱动的动态网站的最佳产品。PHP、MySQL和Apach...
标签: PHP
再往上找到很多资料版本都非常老,新发现这个似乎不错!linews可能采用php! 下面有人说不成功,下面我以WIN2003系统为例,重新安装配置演示下,增加截图给大家,强烈希望斑竹加精! 如果你在安装过程遇到问题欢迎光临http://bbs.xqin.com提出,本人将尽量帮忙解决! 完整标题: Windows 2000/XP/2003 下 IIS+PHP+MySQL+Zend Optimizer+...
标签: PHP
我想要使用PHP和MySQL,但是如何安装和运行呢?什么是最基本的事情我应该知道的,以便让一个简单 的PHP - MySQL应用程序工作? 这是一个基本的教程。没有怪异的代码,只是一些基础。 多说一句,现在有大量的教程是基于UNIX机器的,这个教程将集中在基于Windows平台上。然而,除了 安装部分,有或多或少的针对于Wind...

经验教程

451

收藏

5

精华推荐

热门标签

PHP
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部