预览加载中,请您耐心等待几秒...
1/6
2/6
3/6
4/6
5/6
6/6

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

SUSELinux下源码编译安装apache2.2.6+php5.1.16+mysql5.0.40文档一、编译mysql5.0.40#cd/usr/local/src#tarzxvfmysql-5.0.40.tar.gz#cdmysql-5.0.46#./configure--prefix=/usr/local/mysql--localstatedir=/var/lib/mysql--with-comment=Source--with-server-suffix=-enterprise-gpl--with-mysqld-user=mysql--without-debug--with-big-tables--with-charset=utf8--with-collation=utf8_general_ci--with-extra-charsets=all--with-pthread--enable-static--enable-thread-safe-client--with-client-ldflags=-all-static--with-mysqld-ldflags=-all-static--enable-assembler--without-innodb--without-ndb-debug--without-isam配置成功会提示:MySQLhasaWebsiteatwhichcarriesdetailsonthelatestrelease,upcomingfeatures,andotherinformationtomakeyourworkorplaywithMySQLmoreproductive.ThereyoucanalsofindinformationaboutmailinglistsforMySQLdiscussion.RemembertochecktheplatformspecificpartofthereferencemanualforhintsaboutinstallingMySQLonyourplatform.AlsohavealookatthefilesintheDocsdirectory.ThankyouforchoosingMySQL!#make编译的时间可能会比较长,毕竟优化的比较厉害。#makeinstall编译安装完成后执行后续操作:#useraddmysql//添加mysql用户#cd/usr/local/mysql#bin/mysql_install_db--user=mysql#chown-Rroot:mysql.//设置权限,注意后面有一个"."#chown-Rmysql/var/lib/mysql//设置mysql目录权限#chgrp-Rmysql.//注意后面有一个"."#cpshare/mysql/my-large.cnf/etc/my.cnf#cpshare/mysql/mysql.server/etc/rc.d/init.d/mysqld//开机自动启动mysql。#chmod755/etc/rc.d/init.d/mysqld#chkconfig--addmysqld#/etc/init.d/mysqldstart//启动MySQL#/usr/local/mysql/bin/mysqladmin-urootpassword"password_for_root"//password_for_root为密码.本机是mysql#/usr/local/mysql/bin/mysql–uroot–p//进入mysql客户端(/usr/local/mysql/bin/mysql–uroot–p提示Enterpassword:输入密码,回车进入)#/etc/init.d/mysqldstart//关闭MySQL二、编译安装Apache#cd/usr/local/src#tarzxvfhttpd-2.2.6.tar.gz#cdhttpd-2.2.6#./configure--prefix=/usr/local/apache2--enable-mods-shared=all--with-mysql=/usr/local/mysql--enable-cache--enable-file-cache--enable-mem-cache--enable-disk-cache--enable-static-support--enable-static-htpasswd--enable-static-htdigest--enable-static-rotatelogs--enable-static-logresolve--enable-static-htdbm--enable-static-ab--e