Web service source code compile and install LAMP

table of Contents

Lamp related installation package
link: https://pan.baidu.com/s/1W3AwqWWtDkUVYZ8IGKZ_Yw
Extraction code: v793

1. Overview of LAMP architecture

This article is just a brief description of each component, mainly about the linkage of the three, and the function of each component will be supplemented later.

1. Introduction to LAMP

  • LAMP is an acronym for Linux operating system + Apache web server + MySQL database server + PHP (or Perl, Python) web programming language.
  • They are all independent programs, but combined together can be used to build a dynamic website or server open source software

2. The main function of each component

(1) Linux------ platform

  • Linux is the foundation of the LAMP architecture. It provides an operating system for supporting Web sites, and can provide better stability and compatibility with the other three components (AMP components also support platforms such as Windows and UNIX).

(2) Apache------ front desk

  • Apache, as the front end of the LAMP architecture, is a powerful and stable web server program that directly provides users with website access, sending web pages, pictures and other file content.

(3) MySQL------Backstage

  • As the back end of the LAMP architecture, MySQL is a popular open source relational database system.
  • In applications such as corporate websites and business systems, various account information, product information, customer information, business data, etc. can be stored in the MySQL database, and other programs can query and change this information through SQL statements.

(4) PHP/Perl/Python------Intermediate connection

  • PHP/Perl/Python: As three programming languages ​​for developing dynamic web pages, it is responsible for interpreting dynamic webpage files, communicating with web servers and database systems to work together, and providing a development and operating environment for web applications.
  • Among them, PHP is a widely used open source multipurpose scripting language, which can be embedded in HTML, and is especially suitable for Web application development. (This chapter is written in PHP language)

3. The sequence of building the LAMP platform

When building the LAMP platform, the order of installation of each component is Linux→Apache→MySQL→PHP. There is no strict order for the installation of Apache and MySQL. The installation of the PHP environment is generally placed at the end, responsible for communicating with the Web server and database system to work together.

Two, compile and install Apache httpd service

1. Turn off the firewall and upload the software packages required to install Apache to the /opt directory

systemctl stop firewalld
systemctl disable firewalld
setenforce 0

Insert picture description here

httpd-2.4.46.tar.gz
apr-1.7.0.tar.gz
apr-util-1.6.1.tar.gz
#apr组件包用于支持Apache上层应用跨平台,提供底层接口库,能有效的降低并发连接数、降低进程和减少访问堵塞。

Insert picture description here

2. Installation environment dependent packages

#使用yum前要先安装yum源
yum -y install gcc gcc-c++ make pcre pcre-devel expat-devel perl
#------解释---------
gcc 				#C语言的编译器
gcc-c++ 			#C++的编译器
make 				#源代码编译器(源代码转换成二进制文件)
pcre				#pcre是一个Perl函数库,包括perl 兼容的正则表达式库
pcre-devel          #perl的接口开发包
expat-devel         #用于支持网站解析HTML、XML文件
perl                #perl语言编译器

Insert picture description here

3. Configure the software module

cd /opt/
tar zxvf apr-1.7.0.tar.gz
tar zxvf apr-util-1.6.1.tar.gz
tar zxvf httpd-2.4.46.tar.gz 

mv apr-1.7.0 /opt/httpd-2.4.46/srclib/apr
mv apr-util-1.6.1 /opt/httpd-2.4.46/srclib/apr-util

cd /opt/httpd-2.4.46/

./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi
#--------解释--------
--prefix=/usr/local/httpd #指定 httpd 服务程序的安装路径
--enable-so  			  #启用动态加载模块支持,使 httpd 具备进一步扩展功能的能力
--enable-rewrite		  #启用网页地址重写功能,用于网站优化、防盗链及目录迁移维护
--enable-charset-lite	  #启动字符集支持,以便支持使用各种字符集编码的页面
--enable-cgi              #启用CGI(通用网关接口)脚本程序支持,便于网站的外部扩展应用访问能力

Insert picture description here
If the output of ./configure command is too long, no screenshot will be taken.

4. Compile and install

#make -j 2  表示开2核同时进行编译
make
make install

The output is too long to take a screenshot.
Insert picture description here

5. Optimize the configuration file path, and put the executable program file of the httpd service into the directory of the path environment variable for easy system identification

ln -s /usr/local/httpd/conf/httpd.conf /etc/
ln -s /usr/local/httpd/bin/* /usr/local/bin/

Insert picture description here

6. Add httpd system service

方法一:
cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd		#用于service服务管理
chmod +x /etc/init.d/httpd
vim /etc/init.d/httpd
#在第一行前插入新行,添加此三行内容(注释除外)
#!/bin/bash
#35级别自动运行  第85个启动 第21个关闭
# chkconfig: 35 85 21
# description: Apache is a World Wide Web server

chkconfig --add httpd     		#将httpd服务加入到service管理器

systemctl start httpd.service

方法二:
vim /lib/systemd/system/httpd.service
[Unit]
#描述
Description=The Apache HTTP Server
#描述服务类别
After=network.target
[Service]
#后台运行方式
Type=forking
#PID文件位置
PIDFile=/usr/local/httpd/logs/httpd.pid
#启动服务
ExecStart=/usr/local/bin/apachectl $OPTIONS
#根据PID重载配置
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target

systemctl start httpd.service
systemctl enable httpd.service

Here I use method two to set up (faster), method one is also possible, but after setting, you have to wait a while, the startup is slower, I will not demonstrate here.
Insert picture description here

7. Modify the httpd service configuration file

vim /etc/httpd.conf
#52行;修改
Listen 192.168.163.10:80
#199行;取消注释,修改
ServerName www.lisi.com:80

#223行;默认首页存放路径
DocumentRoot "/usr/local/httpd/htdocs"
#257行;默认首页文件名设置
DirectoryIndex index.html

#检查配置文件的配置项是否有误
httpd -t  或 apachectl -t
cat /usr/local/httpd/htdocs/index.html
systemctl restart httpd.service

Insert picture description here

8. Browser access verification

netstat -anpt | grep 80
echo "192.168.163.10 www.lisi.com" >> /etc/hosts

http://192.168.163.10
http://www.lisi.com

Insert picture description here

Three, compile and install mysqld service

1. Transfer the software packages required to install mysql to the /opt directory

mysql-5.7.17.tar.gz
#支持c++的运行库
boost_1_59_0.tar.gz

Insert picture description here

2. Installation environment dependent packages

yum -y install gcc gcc-c++ ncurses ncurses-devel bison cmake
#------解释-----
gcc 				#C语言的编译器
gcc-c++ 			#C++的编译器
ncurses				#字符终端下图形互动功能的动态库
ncurses-devel 		#ncurses开发包
bison 				#语法分析器
cmake				#mysql需要用cmake编译安装

Insert picture description here

3. Configure the software module

cd /opt
tar zxvf mysql-5.7.17.tar.gz
tar zxvf boost_1_59_0.tar.gz
#重命名
mv boost_1_59_0 /usr/local/boost

cd /opt/mysql-5.7.17/
cmake \
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
-DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock \
-DSYSCONFDIR=/etc \
-DSYSTEMD_PID_DIR=/usr/local/mysql \
-DDEFAULT_CHARSET=utf8  \
-DDEFAULT_COLLATION=utf8_general_ci \
-DWITH_EXTRA_CHARSETS=all \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_ARCHIVE_STORAGE_ENGINE=1 \
-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
-DWITH_PERFSCHEMA_STORAGE_ENGINE=1 \
-DMYSQL_DATADIR=/usr/local/mysql/data \
-DWITH_BOOST=/usr/local/boost \
-DWITH_SYSTEMD=1

注意:如果在CMAKE的过程中有报错,当报错解决后,需要把源码目录中的CMakeCache.txt文件删除,然后再重新CMAKE,否则错误依旧

-DCMAKE_INSTALL_PREFIX=/usr/local/mysql     	#指定mysql的安装路径
-DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock   #指定mysql进程监听套接字文件(数据库连接文件)的存储路径
-DSYSCONFDIR=/etc                               #指定配置文件的存储路径
-DSYSTEMD_PID_DIR=/usr/local/mysql              #指定进程文件的存储路径
-DDEFAULT_CHARSET=utf8                          #指定默认使用的字符集编码,如 utf8
-DDEFAULT_COLLATION=utf8_general_ci  			#指定默认使用的字符集校对规则
-DWITH_EXTRA_CHARSETS=all 						#指定支持其他字符集编码
-DWITH_INNOBASE_STORAGE_ENGINE=1               #安装INNOBASE存储引擎
-DWITH_ARCHIVE_STORAGE_ENGINE=1                #安装ARCHIVE存储引擎 
-DWITH_BLACKHOLE_STORAGE_ENGINE=1              #安装BLACKHOLE存储引擎 
-DWITH_PERFSCHEMA_STORAGE_ENGINE=1            #安装FEDERATED存储引擎 
-DMYSQL_DATADIR=/usr/local/mysql/data         #指定数据库文件的存储路径
-DWITH_BOOST=/usr/local/boost           #指定boost的路径,若使用mysql-boost集成包安装则-DWITH_BOOST=boost
-DWITH_SYSTEMD=1								#生成便于systemctl管理的文件

存储引擎选项:
#MYISAM,MERGE,MEMORY,和CSV引擎是默认编译到服务器中,并不需要明确地安装。
#静态编译一个存储引擎到服务器,使用-DWITH_engine_STORAGE_ENGINE= 1
#可用的存储引擎值有:ARCHIVE, BLACKHOLE, EXAMPLE, FEDERATED, INNOBASE (InnoDB), PARTITION (partitioning support), 和PERFSCHEMA (Performance Schema)
#常用的两个存储引擎是:MYISAM和INNOBASE(InnoDB).

Insert picture description here

4. Compile and install

make && make install

Insert picture description here

5. Create a mysql user

useradd -M -s /sbin/nologin  mysql

Insert picture description here

6. Modify the mysql configuration file

vim /etc/my.cnf
#删除原配置项,再重新添加下面内容
#客户端设置
[client]
port = 3306
socket=/usr/local/mysql/mysql.sock			

#服务全局设置
[mysqld]
#设置管理用户
user = mysql
#指定数据库的安装目录
basedir=/usr/local/mysql
#指定数据库文件的存储路径
datadir=/usr/local/mysql/data
#指定端口
port = 3306
#设置服务器字符集编码格式为utf8
character-set-server=utf8
#指定pid 进程文件路径
pid-file = /usr/local/mysql/mysqld.pid
#指定数据库连接文件
socket=/usr/local/mysql/mysql.sock
#设置监听地址,0.0.0.0代表允许所有,如允许多个IP需空格隔开
bind-address = 0.0.0.0
#禁用DNS解析
skip-name-resolve
#设置mysql的最大连接数
max_connections=2048
#指定默认存储引擎
default-storage-engine=INNODB
#设置数据库接收的数据包大小的最大值
max_allowed_packet=16M
#指定服务ID号
server-id = 1

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,PIPES_AS_CONCAT,ANSI_QUOTES

----------------------------------------------------------------------------------------------------------
sql_mode常用值如下:
NO_ENGINE_SUBSTITUTION
如果需要的存储引擎被禁用或未编译,那么抛出错误。不设置此值时,用默认的存储引擎替代,并抛出一个异常

STRICT_TRANS_TABLES
在该模式下,如果一个值不能插入到一个事务表中,则中断当前的操作,对非事务表不做限制

NO_AUTO_CREATE_USER
禁止GRANT创建密码为空的用户

NO_AUTO_VALUE_ON_ZERO
mysql中的自增长列可以从0开始。默认情况下自增长列是从1开始的,如果你插入值为0的数据会报错

NO_ZERO_IN_DATE
不允许日期和月份为零

NO_ZERO_DATE
mysql数据库不允许插入零日期,插入零日期会抛出错误而不是警告

ERROR_FOR_DIVISION_BY_ZERO
在INSERT或UPDATE过程中,如果数据被零除,则产生错误而非警告。默认情况下数据被零除时MySQL返回NULL

PIPES_AS_CONCAT"||"视为字符串的连接操作符而非或运算符,这和Oracle数据库是一样的,也和字符串的拼接函数Concat相类似

ANSI_QUOTES
启用ANSI_QUOTES后,不能用双引号来引用字符串,因为它被解释为识别符

Insert picture description here

7. Change the owner group of the mysql installation directory and configuration file

chown -R mysql:mysql /usr/local/mysql/
chown mysql:mysql /etc/my.cnf

Insert picture description here

8. Set path environment variables

echo 'export PATH=/usr/local/mysql/bin:/usr/local/mysql/lib:$PATH' >> /etc/profile	
source /etc/profile

Insert picture description here

9. Initialize the database

cd /usr/local/mysql/bin/

./mysqld \
--initialize-insecure \
--user=mysql \
--basedir=/usr/local/mysql \
--datadir=/usr/local/mysql/data
#各项解释:
--initialize-insecure 			  #生成初始化密码为空
--user=mysql                      #指定管理用户
--basedir=/usr/local/mysql        #指定数据库的安装目录
--datadir=/usr/local/mysql/data	  #指定数据库文件的存储路径

Insert picture description here

10. Add mysqld system service

#用于systemctl服务管理
cp /usr/local/mysql/usr/lib/systemd/system/mysqld.service /usr/lib/systemd/system/
#刷新识别
systemctl daemon-reload
#开启服务并设置开机自启动
systemctl start mysqld.service
systemctl enable mysqld
#查看端口
netstat -anpt | grep 3306

Insert picture description here

11. Modify the mysql login password

#给root账号设置密码为123456,提示输入的是原始密码(为空)
mysqladmin -u root -p password "123456"

Insert picture description here

12. Authorize remote login

mysql -u root -p
#授予root用户可以在所有终端远程登录,使用的密码是123456
grant all privileges on *.* to 'root'@'%' identified by '123456';
#查看当前已有的数据库,注意“;”
show databases;
补充:
#对所有数据库和所有表有操作权限
with grant option
#在授权命令后面加入即可
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;

Insert picture description here

Four, compile and install PHP parsing environment

1. Transfer the software packages required to install PHP to the /opt directory

php-7.1.10.tar.bz2

Insert picture description here

2. Install GD library and GD library related programs to process and generate pictures

yum -y install \
gd \
libjpeg libjpeg-devel \
libpng libpng-devel \
freetype freetype-devel \
libxml2 libxml2-devel \
zlib zlib-devel \
curl curl-devel \
openssl openssl-devel

Insert picture description here

3. Configure the software module

cd /opt
tar jxvf php-7.1.10.tar.bz2
cd /opt/php-7.1.10/

./configure \
--prefix=/usr/local/php7 \
--with-apxs2=/usr/local/httpd/bin/apxs \
--with-mysql-sock=/usr/local/mysql/mysql.sock \
--with-config-file-path=/usr/local/php7 \
--with-mysqli \
--with-zlib \
--with-curl \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-openssl \
--enable-mbstring \
--enable-xml \
--enable-session \
--enable-ftp \
--enable-pdo \
--enable-tokenizer \
--enable-zip

相关解释:
--prefix=/usr/local/php7 				#指定将 PHP 程序的安装路径
--with-apxs2=/usr/local/httpd/bin/apxs  #指定Apache httpd服务提供的apxs 模块支持程序的文件位置
--with-mysql-sock=/usr/local/mysql/mysql.sock  #指定mysql 数据库连接文件的存储路径
--with-config-file-path=/usr/local/php7  #设置 PHP 的配置文件 php.ini 将要存放的位置
--with-mysqli   #添加 MySQL 扩展支持 #mysqli扩展技术不仅可以调用MySQL的存储过程、处理MySQL事务,而且还可以使访问数据库工作变得更加稳定
--with-zlib     #支持zlib功能,提供数据压缩
--with-curl     #开启curl扩展功能,实现HTTP的Get下载和Post请求的方法
--with-gd       #激活gd 库的支持
--with-jpeg-dir #激活jpeg 的支持
--with-png-dir  #激活png 的支持
--with-freetype-dir
--with-openssl
--enable-mbstring  #启用多字节字符串功能,以便支持中文等代码
--enable-xml       #开启扩展性标记语言模块
--enable-session   #会话
--enable-ftp       #文本传输协议
--enable-pdo       #函数库
--enable-tokenizer #令牌解释器
--enable-zip       #ZIP压缩格式

Insert picture description here
Insert picture description here

4. Compile and install

make && make install

Insert picture description here

5. Copy the template file as the main configuration file of PHP and modify it

cp /opt/php-7.1.10/php.ini-development /usr/local/php7/php.ini	
#在测试环境时使用php.ini-development文件,而在生产环境时使用php.ini-production文件
vim /usr/local/php7/php.ini
#939行;取消注释,修改
date.timezone = Asia/Shanghai
#1170行;修改
mysqli.default_socket = /usr/local/mysql/mysql.sock

Insert picture description here

6. Optimize the PHP executable program file to be placed in the directory of the path environment variable to facilitate system identification

ln -s /usr/local/php7/bin/* /usr/local/bin/

#查看PHP 加载了哪些模块
php -m

Insert picture description here

7. Modify the configuration file of httpd service to allow Apache to support PHP

vim /etc/httpd.conf
#158行;检查支持php7的模块是否存在
LoadModule php7_module        modules/libphp7.so
#258行;修改首页文件名设置
DirectoryIndex index.html index.php
#393行;插入以下内容
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

Insert picture description here

8. Verify the PHP test page

rm -rf /usr/local/httpd/htdocs/index.html
vim /usr/local/httpd/htdocs/index.php
<?php
phpinfo();
?>

systemctl restart httpd.service

#浏览器访问
http://192.168.163.10

Insert picture description here
Insert picture description here

Five, supplement ------ install forum

1. Create a database and authorize

mysql -u root -p
#创建一个数据库
CREATE DATABASE bbs;

#把bbs数据库里面所有表的权限授予给bbsuser,并设置密码123456
GRANT all ON bbs.* TO 'bbsuser'@'%' IDENTIFIED BY '123456';

#刷新数据库
flush privileges;

show databases;

Insert picture description here
After editing, exit to exit.

2. Unzip the forum compressed package

unzip /opt/Discuz_X3.4_SC_UTF8.zip -d /opt/dis
#上传站点更新包
cd /opt/dis/dir_SC_UTF8/
cp -r upload/ /usr/local/httpd/htdocs/bbs

Insert picture description here

3. Change the owner of the forum directory

cd /usr/local/httpd/htdocs/bbs
chown -R daemon ./config
chown -R daemon ./data
chown -R daemon ./uc_client
chown -R daemon ./uc_server/data

Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here

4. Browser access verification

论坛页面访问
http://192.168.163.10/bbs
----------------------------------------------------------------------------------------------------------
数据库服务器:localhost     ###本地架设就用localhost,如何不是在在本机上就要填写IP地址和端口号
数据库名字:bbs
数据库用户名:bbsuser
数据库密码:123456
管理员账号:admin
管理员密码:admin123
----------------------------------------------------------------------------------------------------------
论坛后台管理员页面
http://192.168.163.10/bbs/admin.php

Insert picture description here

Insert picture description here

Insert picture description here
Insert picture description here
Insert picture description here

Insert picture description here
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_51326240/article/details/112237477