Technical documentation-source code compile and install LAMP

Technical documentation-source code compile and install LAMP

definition

  • LAMP includes Linux operating system, Apache website service, MySQL database server, PHP (or Perl, python) web programming language

The main role of each part

  • (Platform) Linux: Open source, free and stable as the foundation of LAMP architecture
  • (Front desk) Apache: As the front end of the LAMP architecture, it provides front-end web services
  • (Back-end) MySQL: As a back-end relational database of LAMP architecture
  • (Intermediate connection) PHP, Perl, Python: as the three programming languages ​​for developing dynamic web pages, it is responsible for interpreting dynamic webpage files, communicating with web servers and database systems for collaborative work, and providing a development and operating environment for web applications.

Installation sequence

  • When building the LAMP platform, the order of installation of each component is Linux, Apache, MySQL, PHP.
  • Among them, 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.

Apache web service

  • To compile and install the Apache website service, we need to download several installation packages from the Internet, namely httpd-2.4.29.tar.gz, apr-1.6.2.tar.gz and apr-util-1.6.0.tar .gz.

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

2. Installation environment dependent packages

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

3. Configure the software module

cd /opt/
tar zxvf apr-1.6.2.tar.gz
tar zxvf apr-util-1.6.0.tar.gz
tar jxvf httpd-2.4.29.tar.bz2

mv apr-1.6.2 /opt/httpd-2.4.29/srclib/apr
mv apr-util-1.6.0 /opt/httpd-2.4.29/srclib/apr-util

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

4. Compile and install

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

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/

6. Add httpd system service

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

#!/bin/bash 
# chkconfig: 35 85 21
# description: Apache is a World Wide Web server

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

systemctl start httpd.service
service httpd start

7. Modify the httpd service configuration file

vim /etc/httpd.conf
--52行--修改
Listen 192.198.80.10:80
--197行--取消注释,修改
ServerName www.kgc.com:80

--221行--默认首页存放路径
DocumentRoot "/usr/local/httpd/htdocs"
--255行--默认首页文件名设置
DirectoryIndex index.html

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

8. Browser access verification

netstat -anpt | grep 80
echo "192.168.199.10 www.kgc.com" >> /etc/hosts

http://192.168.199.10
http://www.kgc.com

Compile and install mysqld service

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

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

2. Installation environment dependent packages

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

3. Configure the software module

tar zxvf mysql-5.7.17.tar.gz
tar zxvf boost_1_59_0.tar.gz

cd /opt
mv boost_1_59_0 /usr/local/boost  #重命名

cd /opt/mysql-5.7.17/
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管理的文件

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

4. Compile and install

make && make install

5. Create a mysql user

useradd -M -s /sbin/nologin  mysql

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

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

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

8. Set the path environment variable

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

9. Initialize the database

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

10. Add mysqld system service

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

11. Modify the mysql login password

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

12. Authorize remote login

mysql -u root -p
grant all privileges on *.* to 'root'@'%' identified by 'abc123';
#授予root用户可以在所有终端远程登录,使用的密码是abc123,并对所有数据库和所有表有操作权限

show databases;   #查看当前已有的数据库

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

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

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 \       #指定将 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

4. Compile and install

make && make install

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
--1170行--修改
mysqli.default_socket = /usr/local/mysql/mysql.sock
--939行--取消注释,修改
date.timezone = Asia/Shanghai

6. Optimize to put PHP executable program files into the directory of the path environment variable for easy system identification

ln -s /usr/local/php/bin/* /usr/local/bin/
php -m    #查看PHP 加载了哪些模块

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

vim /etc/httpd.conf 
--393行--插入以下内容
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
--255行--修改首页文件名设置
DirectoryIndex index.html index.php

---检查支持php7的模块是否存在------
LoadModule php7_module        modules/libphp7.so

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.80.10

Install forum

1. Create a database and authorize

mysql -u root -p

CREATE DATABASE bbs;
#创建一个数据库

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

flush privileges;
#刷新数据库

show databases;

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  #上传站点更新包

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

4. Browser access verification

论坛页面访问
http://192.168.80.10/bbs

数据库服务器:localhost     ###本地架设就用localhost,如何不是在在本机上就要填写IP地址和端口号
数据库名字:bbs
数据库用户名:bbsuser
数据库密码:admin123
管理员账号:admin
管理员密码:admin123

论坛后台管理员页面
http://192.168.80.10/bbs/admin.php

Guess you like

Origin blog.csdn.net/weixin_51614581/article/details/112271103