当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > mysql+httpd+gd+php+zend

Unix/Linux
实用技巧:sys 请求:内核严重错误?没问题[ZT]
LINUX 的 HOSTID
出现这个信息:neighbour table overflow,什么原因?
如果用的是SCSI硬盘,在GRUB中显示root(hd0,0)对吗?
介绍一个下载LINUX、UNIX资料的网站,很不错
大家谁知道jdk那种.bin的安装文件是怎么做的?
如何新增一块硬盘
大侠帮我看看,怎么多了条route?
不用root密码也可以執行root的程序--Sudo
访问控制大师,使用pam来支持login的访问控制
Linux知识宝库:Kylix经典十大难题解决方法
小技巧:自制c语言编制cgi实现搜索
数据库管理员的难题,选择MySQL还是SQLServer
一托N的实现GRUB引导多个操作系统
网络技术之Linux网络的IPv6应用(1)
网络技术之Linux网络的IPv6应用(2)
网络技术之Linux网络的IPv6应用(3)
MySQL的远程连接出现错误提示分析
利用Perl列出系统环境变量清单范例
系统管理员必备常识之RAID磁盘阵列

Unix/Linux 中的 mysql+httpd+gd+php+zend


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 66 ::
收藏到网摘: n/a


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 [email protected] 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