lamp

1. lamp简介

lamp就是由Linux+Apache+Mysql/MariaDB+Php/Perl/Python的一组动态网站或者服务器的开源软件,除Linux外其它各部件本身都是各自独立的程序,但是因为经常被放在一起使用,拥有了越来越高的兼容度,共同组成了一个强大的Web应用程序平台。

LAMP指的是Linux(操作系统)、Apache(HTTP服务器)、MySQL(也指MariaDB,数据库软件)和PHP(有时也是指Perl或Python)的第一个字母,一般用来建立web应用平台。

2. web服务器工作流程

web服务器的资源分为两种,静态资源和动态资源

  • 静态资源就是指静态内容,我们从服务器所看到的文件与服务器的原文件相同,可以简单的理解为就是直接存储于文件系统中的资源
  • 动态资源则通常是程序文件,需要在服务器执行之后,将执行的结果返回给客户端

2.1 cgi与fastcgi

  • CGI(Common Gateway Interface,通用网关接口),CGI是外部应用程序(CGI程序)与WEB服务器之间的接口标准,是在CGI程序和Web服务器之间传递信息的过程。CGI规范允许Web服务器执行外部程序,并将它们的输出发送给Web浏览器,CGI将web的一组简单的静态超媒体文档变成一个完整的新的交互式媒体。

  • FastCGI(Fast Common Gateway Interface)是CGI的改良版,CGI是通过启用一个解释器进程来处理每个请求,耗时且耗资源,而FastCGI则是通过master-worker形式来处理每个请求,即启动一个master主进程,然后根据配置启动几个worker进程,当请求进来时,master会从worker进程中选择一个去处理请求,这样就避免了重复的生成和杀死进程带来的频繁cpu上下文切换而导致耗时

2.2 httpd与php结合的方式

httpd与php结合的方式有以下三种:

  • modules:php将以httpd的扩展模块形式存在,需要加载动态资源时,httpd可以直接通过php模块来加工资源并返回给客户端
  1. httpd prefork:libphp5.so(多进程模型的php)
  2. httpd event or worker:libphp5-zts.so(线程模型的php)
  • CGI:httpd需要加载动态资源时,通过CGI与php解释器联系,获得php执行的结果,此时httpd负责与php连接的建立和断开等
  • FastCGI:利用php-fpm机制,启动为服务进程,php自行运行为一个服务,https通过socket与php通信
    较于CGI方式,FastCGI更为常用,很少有人使用CGI方式来加载动态资源

2.3 web工作流程

  • 客户端通过http协议请求web服务器资源
  • web服务器收到请求后判断客户端请求的资源是静态资源或是动态资源

若是静态资源则直接从本地文件系统取之返回给客户端。
否则若为动态资源则通过FastCGI协议与php服务器联系,通过CGI程序的master进程调度worker进程来执行程序以获得客户端请求的动态资源,并将执行的结果通过FastCGI协议返回给httpd服务器,httpd服务器收到php的执行结果后将其封装为http响应报文响应给客户端。在执行程序获取动态资源时若需要获得数据库中的资源时,由Php服务器通过mysql协议与MySQL/MariaDB服务器交互,取之而后返回给httpd,httpd将从php服务器收到的执行结果封装成http响应报文响应给客户端。

3. lamp平台构建

环境说明:

系统平台IP需要安装的服务
centos7
redhat7
192.168.125.129httpd-2.4
mysql-5.7
php
php-mysql

平台软件安装次序:

    httpd --> mysql --> php

3.1安装httpd

[root@xxx ~]#  yum groups mark install 'Development Tools' --安装开发工具包
....
[root@xxx ~]# groupadd -r apache --创建apache服务的用户和组
[root@xxx ~]# useradd -r -M -s /sbin/nologin -g apache apache
[root@xxx ~]#  yum -y install openssl-devel pcre-devel expat-devel libtool  --安装依赖包
....
[root@xxx ~]# cd /usr/src/
[root@xxx src]# tar xf apr-1.6.3.tar.bz2 
[root@xxx src]# tar xf apr-util-1.6.1.tar.bz2 
[root@xxx src]# vim configure
    cfgfile="${ofile}T"
    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
    # $RM "$cfgfile"        将此行加上注释,或者删除此
[root@xxx apr-1.6.3]# ./configure --prefix=/usr/local/apr ---安装apr
....
[root@xxx apr-1.6.3]# make&make install --编译安装
.....
[root@xxx apr-1.6.3]# cd /usr/src/apr-util-1.6.1
[root@xxx apr-util-1.6.1]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/  配置apr-util
[root@xxx apr-util-1.6.1]# make&make install --编译安装
...
root@xxx src]# tar xf httpd-2.4.34.tar.bz2 
[root@xxx src]# cd httpd-2.4.34
[root@xxx httpd-2.4.34]# ./configure --prefix=/usr/local/apache \  --安装httpd
> --sysconfdir=/etc/httpd24 \
> --enable-so \
> --enable-ssl \
> --enable-cgi \
> --enable-rewrite \
> --with-zlib \
> --with-pcre \
> --with-apr=/usr/local/apr \
> --with-apr-util=/usr/local/apr-util/ \
> --enable-modules=most \
> --enable-mpms-shared=all \
> --with-mpm=prefork
[root@xxx httpd-2.4.34]# make &make install --编译安装
....
[root@xxx httpd-2.4.34]# vim /etc/profile.d/httpd.sh  --创建环境变量
[root@xxx httpd-2.4.34]# cat /etc/profile.d/httpd.sh
export PATH=/usr/local/apache/bin:$PATH
[root@xxx httpd-2.4.34]# source /etc/profile.d/httpd.sh
[root@xxx httpd-2.4.34]# ln -s /usr/local/apache/include/ /usr/include/httpd
[root@xxx httpd-2.4.34]# ll /usr/include/httpd
lrwxrwxrwx. 1 root root 26 2月  20 11:56 /usr/include/httpd -> /usr/local/apache/include/
[root@xxx httpd-2.4.34]# vim /etc/man.conf  --创建man手册
[root@xxx httpd-2.4.34]# vim /etc/httpd24/httpd.conf  ---取消ServerName前的注释符号
[root@xxx httpd-2.4.34]# apachectl start  --开启apache
[root@xxx httpd-2.4.34]# ss -anlt
State       Recv-Q Send-Q                   Local Address:Port                     Peer Address:Port 
LISTEN      0      100                          127.0.0.1:25                                  *:*     
LISTEN      0      5                                    *:873                                 *:*     
LISTEN      0      128                                  *:22                                  *:*     
LISTEN      0      100                                ::1:25                                 :::*     
LISTEN      0      5                                   :::873                                :::*     
LISTEN      0      128                                 :::80                                 :::*     
LISTEN      0      128                                 :::22                                 :::*     

3.2 安装mysql

[root@xxx src]# yum -y install ncurses-devel openssl-devel openssl cmake mariadb-devel --安装依赖包
...
创建用户和组
[root@xxx src]# groupadd -r -g 300 mysql
[root@xxx src]# useradd -M -s /sbin/nologin -g 300 -u 300 mysql
[root@xxx src]# tar xf mysql-5.7.23-linux-glibc2.12-x86_64.tar.gz  /usr/local
[root@xxx src]# cd /usr/local/
[root@xxx local]# ln -sv mysql-5.7.23-linux-glibc2.12-x86_64/ mysql
"mysql" -> "mysql-5.7.23-linux-glibc2.12-x86_64/"
[root@xxx local]# ll mysql
lrwxrwxrwx. 1 root root 36 2月  20 12:08 mysql -> mysql-5.7.23-linux-glibc2.12-x86_64/
[root@xxx local]# chown -R mysql.mysql /usr/local/mysql  --更改属主属组
[root@xxx local]# ll /usr/local/mysql
lrwxrwxrwx. 1 mysql mysql 36 2月  20 12:08 /usr/local/mysql -> mysql-5.7.23-linux-glibc2.12-x86_64/
[root@xxx local]# vim /etc/profile.d/mysql.sh --添加环境变量
[root@xxx local]# cat /etc/profile.d/mysql.sh
export PATH=/usr/loacl/mysql/bin:$PATH
[root@xxx local]# . /etc/profile.d/mysql.sh
创建数据存放文件 并更改属主属组
[root@xxx local]# mkdir /opt/test
[root@xxx local]# chown -R mysql.mysql /opt/test/
[root@xxx local]# ll /opt/test/ -d
drwxr-xr-x. 2 mysql mysql 6 2月  20 12:12 /opt/test/
数据库初始化
[root@xxx local]#  /usr/local/mysql/bin/mysqld --initialize --user=mysql --datadir=/opt/test/
2019-02-20T04:15:37.920812Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
...
2019-02-20T04:15:38.761539Z 1 [Note] A temporary password is generated for root@localhost: O7n/<2ziRu(/    --初始化密码
生成配置文件
[root@xxx local]# vim /etc/my.cnf
[root@xxx local]# cat /etc/my.cnf
[mysqld]
basedir = /usr/local/mysql
datadir = /opt/test
socket = /tmp/mysql.sock
port = 3306
pid-file = /opt/test/mysql.pid
user = mysql
skip-name-resolve
配置服务启动脚本
[root@xxx ~]# \cp -a /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
[root@xxx ~]# vim /etc/init.d/mysqld
basedir=/usr/local
datadir=/opt/test
[root@xxx ~]# service mysqld start
Starting MySQL.. SUCCESS!  
[root@xxx ~]# ps -ef|grep mysql
root      72198      1  0 21:28 pts/0    00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/opt/test --pid-file=/opt/test/mysql.pid
mysql     72376  72198  0 21:28 pts/0    00:00:03 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/opt/test --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=xj.err --pid-file=/opt/test/mysql.pid --socket=/tmp/mysql.sock --port=3306
root      92692  92584  0 23:39 pts/1    00:00:00 grep --color=auto mysql
[root@xxx ~]# [root@xj ~]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.7.23 MySQL Community Server (GPL)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> set password = password('123456');
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> quit

3.3 安装php

[root@xxx ~]#  wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
[root@xxx ~]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@xxx ~]# sed -i 's/^enabled=.*/enabled=1/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@xxx ~]# yum -y install epel-release
[root@xxx ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
[root@xxx ~]# yum -y install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libicu-devel libjpeg libjpeg-devel libpng libpng-devel openldap-devel  libpcre-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel mhash mhash-devel php72w-mysqlnd
[root@xxx ~]# tar xf php-7.2.8.tar.xz
[root@xxx ~]# cd php-7.2.8
[root@xxx php-7.2.8]# ./configure --prefix=/usr/local/php7  \
--with-config-file-path=/etc \
--enable-fpm \
--enable-inline-optimization \
--disable-debug \
--disable-rpath \
--enable-shared \
--enable-soap \
--with-openssl \
--enable-bcmath \
--with-iconv \
--with-bz2 \
--enable-calendar \
--with-curl \
--enable-exif  \
--enable-ftp \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-zlib-dir \
--with-freetype-dir \
--with-gettext \
--enable-json \
--enable-mbstring \
--enable-pdo \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-readline \
--enable-shmop \
--enable-simplexml \
--enable-sockets \
--enable-zip \
--enable-mysqlnd-compression-support \
--with-pear \
--enable-pcntl \
--enable-posix
[root@xxx php-7.2.8]#make&make install --编译安装
[root@xxx php-7.2.8]#echo 'export PATH=/usr/local/php7/bin:$PATH' > [root@php-7.2.8~]/etc/profile.d/php7.sh --配置环境变量
[root@xxx php-7.2.8]# source /etc/profile.d/php7.sh
配置php-fpm
[root@xxx php-7.2.8]# cp php.ini-production /etc/php.ini
[root@xxx php-7.2.8]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
[root@xxx php-7.2.8]# chmod +x /etc/rc.d/init.d/php-fpm
[root@xxx php-7.2.8]# cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf
[root@xxx php-7.2.8]# cp /usr/local/php7/etc/php-fpm.d/www.conf.default /usr/local/php7/etc/php-fpm.d/www.conf
启动php-fpm
[root@xxx ~]# service php-fpm start
Starting php-fpm  done
[root@xxx ~]# ss -anlt
State      Recv-Q Send-Q                  Local Address:Port                    Peer Address:Port 
LISTEN     0      100                         127.0.0.1:25                                 *:*     
LISTEN     0      128                         127.0.0.1:9000                               *:*     
LISTEN     0      128                                 *:22                                 *:*     
LISTEN     0      100                               ::1:25                                :::*     
LISTEN     0      80                                 :::3306                              :::*     
LISTEN     0      128                                :::80                                :::*     
LISTEN     0      128                                :::22                                :::*     
启用代理模块 --把下面两个模块的注释取消
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
创建虚拟目录并生成php测试页面
[root@xxx ~]# mkdir /usr/local/apache/htdocs/xxx.com
[root@xxx ~]# cat /usr/local/apache/htdocs/xxx.com/index.php 
<?php
	phpinfo();

?>
[root@xxx ~]#  chown -R apache.apache /usr/local/apache/htdocs/
[root@xxx ~]# ll /usr/local/apache/htdocs/
总用量 4
drwxr-xr-x. 2 apache apache 22 2月  18 22:13 xxx.com
[root@xxx ~]# vim /etc/httpd24/httpd.conf 
<VirtualHost *:80>
    DocumentRoot "/usr/local/apache/htdocs/xxx.com"
    ServerName www.xxx.com
    ProxyRequests Off
    ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/usr/local/apache/htdocs/xxx.com/$1
    <Directory "/usr/local/apache/htdocs/xxx.com">
        Options none
        AllowOverride none
        Require all granted
    </Directory>
</VirtualHost>
[root@xxx ~]# vim /etc/httpd24/httpd.conf
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    AddType application/x-httpd-php .php  添加内容
    AddType application/x-httpd-php-source .phps --添加内容
[root@xxx ~]# vim /etc/httpd24/httpd.conf
<IfModule dir_module>
    DirectoryIndex index.php index.html  --在index.html前面添加index.php
</IfModule>
重启apache服务
[root@xxx ~]# apachectl stop
[root@xxx ~]# apachectl start
[root@xxx ~]# ss -anlt
State      Recv-Q Send-Q                  Local Address:Port                    Peer Address:Port 
LISTEN     0      100                         127.0.0.1:25                                 *:*     
LISTEN     0      128                         127.0.0.1:9000                               *:*     
LISTEN     0      128                                 *:22                                 *:*     
LISTEN     0      100                               ::1:25                                :::*     
LISTEN     0      80                                 :::3306                              :::*     
LISTEN     0      128                                :::80                                :::*     
LISTEN     0      128                                :::22                                :::*     

验证
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值