LAMP 安装
安装MYSQL
#tar –zxvf mysql-5.0.22.tar.gz //解开安装包
#cd mysql-5.0.22 //进入安装目录
#mkdir /usr/local/mysql //创建mysql目录
#./configure --prefix=/usr/local/mysql //设置安装目录
#make //编译
#make install //安装
// 或是这样 #make && make install 编译并安装
#groupadd mysql //新建名为mysql的组
#useradd –g mysql mysql //新建名为mysql的用户,并且默认属于mysql组
#chgrp –R mysql /usr/local/mysql //改变/usr/local/mysql及下属文件与目录属于的组
#cp support-files/my-large.cnf /etc/my.cnf //拷贝my-large.cnf到/etc中,替换原有的my.cnf
#scripts/mysql_install_db //建立初始数据
#chown –R mysql:mysql /usr/local/mysql/var //更改var及下面的文件目录属组与属主
#cp support-files/mysql.server /etc/init.d/mysqld //拷贝mysql.server到init.d目录中并重命名为mysql,启动文件
#chmod 755 /etc/init.d/mysqld //设置启动文件的权限为755
#chkconfig --add mysqld //把此服务添加到系统启动中,add为添加至/etc/rc.d/init.d中
#chkconfig mysqld on //on默认在3\5级别服务默认启动
#/etc/init.d/mysqld start
#/usr/local/mysql/bin/mysqld_safe & //启动mysql
#/usr/local/mysql/bin/mysqladmin –u root –p password 123 //默认root用户密码为空,设置密码为123
#/usr/local/mysql/bin/mysql –u root –p //输入上面设置的123后,以root身份登陆
#./mysqladmin -u root -p password 456 //输入上面设置的123后.以root身份登陆
mysql> grant select on test.* to 'ttt' @'%' identified by'ttt' with grant option;
//添加一个名称为ttt,密码为ttt的mysql账户,对test数据库有修改权限
2、Apahce的安装
#tar -zxvf httpd-2.2.3.tar.gz //解压httpd-2.2.3.tar.gz包
#./configure –prefix=/usr/local/apache2 --enbale-module=so //这里的—prefix指定apache 的安装将安装到:/usr/local/apache2目录下
#make //编译
#make install //安装
#vi /usr/local/apache2/conf/httpd.conf //将里面的ServerName前面的#去掉,后面是:自己的ip:80
#/usr/local/apache2/bin/apachectl start //启动apache服务
如果你想一开机就让apache自动运行的话,那么进行如下操作:
编辑etc/rc.d /rc.local
# vi /etc/rc.d/rc.local
在最后加上一句: /usr/local/apache2/bin/apachectl start
看这里的/usr/local/apache2的安装路径用到了吧,所以大家装的时候一定要记清楚哦。。。。
jpeg包的安装和设定
#mkdir -p /usr/local/jpeg6
# mkdir -p /usr/local/jpeg6/bin
# mkdir -p /usr/local/jpeg6/lib
# mkdir -p /usr/local/jpeg6/include
# mkdir -p /usr/local/jpeg6/man/man1
//上面的创建目录
#tar –zxvf jpegsrc.v6b.tar.gz //解压jpegsrc.v6b.tar.gz包
#./configure –prefix=/usr/local/jpeg6/ --enable-static
#make //编译
#make install //安装
安装libpng
# tar xvzf libpng-1.2.8.tar.gz
# cd libpng-1.2.8
# cp scritp/makefile.gcmmx makefile(本身自带makefile文件,无需configure,copy一下就OK了)
# make
# make install
安装freetype
#tar –zxvf freetype-2.3.5.tar.gz
#cd freetype-2.3.5
#mkdir –p /usr/local/freetype
#./configure –prefix=/usr/local/freetype
#make
#make install
安装zlib(lib png支持包)
#tar –zxvf zlib-1.2.2.tar.gz
#cd zlib-1.2.2.tar.gz
#./configure
#make
#make insatll
安装GD库#
#tar –zxvf gd-2.0.33.tar.gz
#cd gd-2.0.33.tar.gz
# ./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg6/ --with-png=/usr/local/lib/ --with-zlib=/usr/local/lib/ --with-freetype=/usr/local/freetype/
#make
#make install
#cp gd.h /usr/local/lib/
安装xml包
#tar –zxvf libxml2-2.6.19.tar.gz
#cd libxml2-2.2.6.19
#./configure –prefix=/usr/local/libxml2
#make
#make install
安装Curl库
#tar –zxvf curl-7.16.4.tar.gz
#cd curl-7.16.4
#./configure –prefix=/usr/local/curl
#make
#make install
安装php
#tar –zxvf php-5.2.3.tar.gz
#cd php-5.2.3.tar.gz
#./configure --prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql/ --with-curl=/usr/local/curl --enable-ftp --with-libxml-dir=/usr/local/libxml2 --with-gd-dir=/usr/local/gd2 --with-jpeg-dir=/usr/local/jpeg6/ --with-zlib-dir=/usr/local/lib --with-png=/usr/local/lib/ --with-freetype-dir=/usr/local/freetype
#make
#make install
#cp php.ini-dist /usr/local/lib/php.ini
其中./configure 后的 --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql/ --with-libxml-dir=/usr/local/libxml2 是必要的选项 --with-gd=/usr/local/gd2/ --with-jpeg-dir=/usr/local/jpeg6/ --with-png=/usr/local/lib --with-zlib-dir=/usr/lib --with-freetype-dir=/usr/local/freetype 这是让PHP支持GD库的配置选项
--with-curl=/usr/local/curl 支持CURL库 --enable-ftp 打开FTP库函数支持
--enable-soap --with-xsl=/usr/local/libxslt --enable-xslt 让PHP支持SOAP, 上面这些一般用得少, 可以去掉
--- 收尾工作:
编辑apache的配置文件httpd.conf
vi /etc/httpd/httpd.conf
找到 “#AddType application/x-gzip .gz .tgz”
并在后面加入
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
这两行的目的是让apache识别php。
再找到“DirectoryIndex index.html”
加上 index.php 让它把index.php做为默认页
---测试环境:
在/usr/local/apache/htdocs/下面建立php文件。
# vi /usr/local/apache/htdocs/index.php
输入:
<?
phpinfo();
?>
重启apache服务器
# /usr/local/apache/bin/apachectl restart
浏览器中输入:http://127.0.0.1/index.php测试一下,激动的话面就出来喽!!!!
分享到:
相关推荐
本安装手册将指导您如何在Red Hat AS3上安装Apache web服务器、PHP解释器以及MySQL数据库,这三个组件组合起来常被称为LAMP(Linux、Apache、MySQL、PHP)堆栈,是开发和部署Web应用的基础。 ### 安装前的注意事项 ...
【Red Hat Linux 4.0 AS LAMP环境配置详解】 在Linux系统中,构建LAMP(Linux、Apache、MySQL、PHP)环境是搭建Web服务器的基础。本教程将详细讲解如何在Red Hat Linux 4.0 AS上配置Apache、MySQL和PHP。 首先,...
在Red Hat AS5.0操作系统下搭建Apache+MySQL+PHP+Tomcat+JSP平台是一项常见的Web服务配置任务,这个组合常被称为LAMP(Linux + Apache + MySQL + PHP)加上JSP支持,提供了强大的Web应用环境。以下是详细的搭建步骤...
Red Hat Linux 4-U5-x86_64-AS 提供了高性能、可扩展性和安全性,是搭建 Moodle 的良好选择。 【硬件配置】搭建 Moodle 服务器时,硬件配置需要考虑 CPU 性能、内存大小、硬盘容量和网络带宽。CPU 需要支持 64 位...
Ansible has grown from a small, open source orchestration tool to a full-blown orchestration and configuration management tool owned by Red Hat. Its powerful core modules cover a wide range of ...
- **操作系统**:Linux Red Hat AS4,内核版本2.6.9-22.ELsmp,GCC版本3.4.4。 - **软件**:Apache 2.2.3(支持MPM模式)、PHP 5.2.0、eAccelerator 0.9.5、memcache 1.2.0、libevent 1.2a、MySQL 5.0.27、Nginx ...
- **操作系统**:Red Hat Linux Enterprise AS 4.0 - **数据库**:MySQL 5.0.22 - **Web 服务器**:Apache 2.2.15 - **脚本语言**:PHP 5.2.13 #### 2. 安装包准备 接下来是准备所需的软件包。以下是各个组件的...
- **RPM包安装**:适用于Red Hat Enterprise Linux (RHEL)及衍生系统。例如,在RHEL4中可以通过安装`httpd`软件包来部署Apache服务器。 - `httpd`:Apache服务器程序软件包。 - `httpd-manual`:Apache服务器的...
2. 在闭音节中,A通常发短元音[æ],例如black, dad, sad, bag, am, lamp, an, family, can, fan, man, and, hand, thank, map, has, cat, fat, that, hat, rabbit等。 3. 当A与r结合形成ar组合时,如car, far, ...