Linux基于LAMP架构搭建个人论坛网站
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux基于LAMP架构搭建个人论坛网站相关的知识,希望对你有一定的参考价值。
一、前言
什么是LAMP?
简单的说就是Linux
+Apache
+mysql
+php
这是一个常规的 Web 服务器环境解决方案,使用其首字母缩写“LAMP”来引用。它是一个用于创建和管理 Web 应用程序的开源开发平台。Linux 用作后端操作系统(OS)。Apache 是Web 服务器,MySQL 是数据库,PHP 是脚本语言。
搭建自己的博客有几个好处:
- 发布的内容自己决定,不用别人监管
- 更好的推广个人品牌
- 自由设置域名
二、检查系统环境
1、服务器准备
我使用的是Vmware虚拟机创建的Linux系统
系统版本:Centos7.9
系统配置:2核4G
2、配置阿里YUM源(非必须)
打开centos的yum文件夹
cd /etc/yum.repos.d/
用wget下载repo文件
wget http://mirrors.aliyun.com/repo/Centos-7.repo
注意: 如果提示-bash: wget: 未找到命令
说明还没有安装wget工具
输入yum -y install wget
回车进行安装。
备份系统原来的repo文件
cp CentOS-Base.repo CentOS-Base.repo.bak
替换系统原理的repo文件
mv Centos-7.repo CentOS-Base.repo
执行yum源更新命令
# 清除缓存:
yum clean all
# 生成缓存
yum makecache
# 更新
yum update && yum upgrade -y
现在你的就已经配置好了阿里云的环境了.
阿里镜像官方地址 http://mirrors.aliyun.com/
3、关闭内置防火墙
关闭SELINUX防火墙,避免导致一些错误
4、查看是否安装apache
[root@yuchao-aliyun ~]# rpm -qa httpd
没有结果,表示未安装httpd服务,也就是没装apache这个web服务器。
5、查看是否安装MySQL
[root@yuchao-aliyun ~]# rpm -qa mysql
6、是否安装php
[root@yuchao-aliyun ~]# rpm -qa php
为什么检查,因为如果机器安装过这些软件,或者安装后,卸载了,但是没有卸载干净,导致一些依赖软件的残留。 我们再进行安装的时候,就会碰到依赖冲突的错误。 建议新手用新机器操作。
三、环境部署
1、部署Apache
① 使用yum命令安装httpd软件包
apache这个软件,在linux中软件包的名字,是叫做httpd,因此得通过yum安装这个httpd
[root@yuchao-aliyun ~]# yum install httpd -y
② 配置/etc/httpd/conf/httpd.conf文件
[root@yuchao-aliyun ~]# vim /etc/httpd/conf/httpd.conf
修改本行配置
一般填入网站的域名,如果没有可以写入IP地址
③ 使用systemctl命令重启httpd服务,使用netstat -ntlp命令,查看是否有80端口监听
[root@yuchao-aliyun ~]# systemctl restart httpd
[root@yuchao-aliyun ~]#
[root@yuchao-aliyun ~]#
[root@yuchao-aliyun ~]# netstat -tnlp|grep 80
tcp6 0 0 :::80 :::* LISTEN 1334/httpd
有80端口存在,并且该httpd服务,网络连接状态已经是LISTEN,监听中了。
④ 测试访问Apache
访问地址为:IP:80
成功访问apache
2、部署MySQL
① 配置mysql的软件rpm源
https://dev.mysql.com/
http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# 1.下载mysql的yum源
[root@yuchao-aliyun local]# cd /usr/local/
[root@yuchao-aliyun local]# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# 2.安装,查看mysql的yum源
[root@yuchao-aliyun local]# rpm -ivh mysql-community-release-el7-5.noarch.rpm
Preparing... ################################# [100%]
Updating / installing...
1:mysql-community-release-el7-5 ################################# [100%]
[root@yuchao-aliyun local]#
[root@yuchao-aliyun local]# ls -l /etc/yum.repos.d/
total 16
-rw-r--r-- 1 root root 675 Jan 18 17:00 CentOS-Base.repo
-rw-r--r-- 1 root root 230 Jan 18 17:00 epel.repo
-rw-r--r-- 1 root root 1209 Jan 29 2014 mysql-community.repo
-rw-r--r-- 1 root root 1060 Jan 29 2014 mysql-community-source.repo
# 3.此时可以安装mysql
yum -y install mysql-community-server
# 4.安装完毕后,启动mysql
完成后,系统自动生成mysql服务管理脚本,systemctl可以去调用
也是我们通过systemctl 去管理的服务的名字
[root@yuchao-aliyun local]# systemctl start mysqld
# 5.查看mysql运行端口,进程
[root@yuchao-aliyun local]# netstat -tnlp|grep mysql
tcp6 0 0 :::3306 :::* LISTEN 1754/mysqld
[root@yuchao-aliyun local]# ps -ef|grep mysql
mysql 1587 1 0 18:43 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --basedir=/usr
mysql 1754 1587 0 18:43 ? 00:00:00 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
root 12022 1202 0 18:54 pts/0 00:00:00 grep --color=auto mysql
# 6.确保mysql启动后,初始化数据,进行使用
默认的mysql没有密码,没数据,得初始化使用
[root@yuchao-aliyun local]# mysql_secure_installation
# 7.连接mysql服务端
[root@yuchao-aliyun local]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \\g.
Your MySQL connection id is 13
Server version: 5.6.51 MySQL Community Server (GPL)
Copyright (c) 2000, 2021, 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>
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)
mysql>
mysql> exit
Bye
安装完成
查看mysql服务的名字,已经启动mysql
初始化数据库
3、部署PHP
① 使用yum安装php即可
[root@yuchao-aliyun local]# yum install php -y
② 重启httpd
[root@yuchao-aliyun local]# systemctl restart httpd
1.在安装php之后,重启httpd
2.php能够自动和apache结合工作了。
③ 测试访问php
1.进入httpd,apache的网站根目录,也就是这个网页存放的地方。
[root@yuchao-aliyun local]# cd /var/www/html/
[root@yuchao-aliyun html]#
[root@yuchao-aliyun html]# vim index.php
[root@yuchao-aliyun html]# cat index.php
<?php
phpinfo();
?>
2.这里的意思是,我们访问apache,然后看到php脚本,脚本内的代码是打印一句话。
访问地址:IP:80/index.php
此时我们已经能够正确访问到
四、部署Discuz论坛
1、下载
官网下载地址:https://www.discuz.vip/download.html
点击下载简体中文
2、上传ZIP文件到Linux
Linux里安装lrzsz软件,用于上传下载、或者用FTP。
[root@yuchao-aliyun html]# yum install lrzsz -y
# 输入rz命令,xshell自动弹出文件接收功能
# 后面传输大量文件,还是使用FTP工具,一般如XFTP
[root@yuchao-aliyun html]# rz
# 上传到apache的网页根目录,这个目录下,只要存放了HTML文件,php文件,就能访问到
[root@yuchao-aliyun html]# pwd
/var/www/html
[root@yuchao-aliyun html]# ls
DiscuzX-master.zip index.php
# 安装unzip
[root@yuchao-aliyun html]# yum install -y unzip
# 解压缩Discuz代码
[root@yuchao-aliyun html]# unzip Discuz_X3.5_SC_UTF8_20230316.zip
# 最后异步,需要把/var/www/html/upload下代码,全部移动到 /var/www/html 这个位置,且必须在这个位置
注意看,最终,Discuz论坛的代码,要放在哪里
3、访问论坛网站
1、访问地址:IP:80/install
点击 我同意
2、报错php版本低,需要升级php版本
3、升级php版本
1、执行下面的命令升级软件仓库
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
2、执行下面的命令删除php
yum remove php-common
3、安装php 5.6版本(php56w-devel这个不是必需的)
yum install -y php56w php56w-opcache php56w-xml php56w-mcrypt php56w-gd php56w-devel php56w-MySQL php56w-intl php56w-mbstring
4、重启httpd
service httpd restart
5、查看版本
[root@localhost html]# php -v
PHP 5.6.40 (cli) (built: Jan 12 2019 13:11:15)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
4、安装mysql连接驱动
上述问题,可以直接yum安装
[root@yuchao-aliyun html]# yum install php-mysqli -y
重启httpd
[root@yuchao-aliyun html]# systemctl restart httpd
再次访问Discuz安装界面,刷新即可。
添加权限
[root@yuchao-aliyun html]#
[root@yuchao-aliyun html]# chmod -R 777 /var/www/html/*
刷新浏览器,再次查看问题已解决
6、开始安装
这里默认全新安装即可
7、配置数据库
因为php和mysql部署在同一台服务器,这里数据库地址填:127.0.0.1即可
设置一个管理员账号及密码
正在和数据库建立连接
8、访问论坛网站
到这步已经提示你的论坛网站安装成功,点击直接访问站点即可!
使用刚才创建的管理员账号密码进行登录
至此,你的论坛网站已经全部部署完成,可以自由发帖!
如果对你有帮助请给予支持点赞关注,后续还会更新搭建各种环境
4-源码方式基于LAMP架构搭建BBS论坛或者博客
目录
课程目标
- 使用源码方式基于LAMP架构搭建BBS论坛或者博客
- 本文成功搭建2个网站,一个个人博客,一个是web界面管理mysql数据库的应用
请耐心阅读,细心操作,你也会成功!
思考:yum工具搭建lamp环境和源码包搭建的区别
rpm版本
安装方便,升级、卸载都很灵活,很难或者无法定制主要组件的功能,适合批量部署
源码包编译
根据业务需求定制,前提是必须对平台的功能需要非常了解:卸载、升级、安装并不是很方便灵活
生产环境如何做
- 上线前,在测试环境中编译安装并且调试完毕后,把编译后的源码同步到其余软硬环境一样的机器,直接 make install即可
- 上线前,在测试环境中编译安装并且调试完毕后,把源码包封装成rpm包,再使用批量化部署软件进行统一安装
一、项目简介
- LAMP(Linux+Apache+MySQL+Perl/PHP/Python)的一个缩写,它们通常一起使用来运行动态网站。虽然这些开放源代码程序本身并不是专门设计成同另外几个程序一起工作的,但由于它们的免费和开源,这个组合开始流行(大多数Linux发行版本捆绑了这些软件),这就导致这些组件经常在一起使用。LAMP网站架构是目前国际流行的web框架,是国际上非常成熟的架构框架,很多流行的商业应用都是采取这个架构的。LAMP具有通用、跨平台、高性能、低价格的优势,因此lamp无论是性能、质量还是价格都是企业搭建网站的首选平台,现已为商用型web架构代名词。
- 本章的目标是完全通过源代码编译安装,组建一个LAMP的环境,并运行一个PHP写的web网站。
二、环境准备
1.需要准备的软件包
共享文件夹/LAMP下
apr-1.5.2.tar.bz2
apr-util-1.5.4.tar.bz2
httpd-2.4.12.tar.bz2
php-5.6.11.tar.xz
mysql-5.6.25.tar.gz
http://archive.apache.org/dist/
https://www.php.net/releases/
2.安装前环境准备
清空环境,安装相应的软件包
yum -y groupinstall "Development tools"
yum -y groupinstall "Desktop Platform Development" 桌面开发工具包(图形化相关包)
yum install cmake
yum install ncurses-devel
3.编译方式
Apache-->MySQL-->php 或者 MySQL-->Apache-->php
说明:
1.apache必须要先于PHP安装,因为PHP是作为apache的模块libphp.so,被apache加载调用
2.apache和MySQL之间并没有直接先后顺序的依赖,谁先谁后无所谓
3.在PHP-5.3版本前,MySQL必须先于php的编译,因为PHP需要实现连接数据库的功能,它通过MySQL的接口才能编译出该功能
4.在PHP-5.3版本或者之后,PHP已经集成了一套连接MySQL数据的代码,并不依赖MySQL的接口,这时,MySQL和PHP的编译顺序也就无所谓了
三、编译安装MySQL
版本:mysql-5.6.25.tar.gz
需求:
1.安装目录:/mysql25/mysql_basedir
2.数据目录:/mysql25/data
3.端口:3307(默认3306)
4.socket:/mysql25/mysql_basedir
安装:
1.官方网站下载相应软件包
2.解压
3.安装
1)创建相应的目录和用户并授权
[[email protected] ~]# cd /LAMP/
[[email protected] LAMP]# ll
total 32428
-rwxr-xr-x 1 root root 33203321 Apr 29 18:06 mysql-5.6.25.tar.gz
[[email protected] LAMP]# tar -xf mysql-5.6.25.tar.gz -C /usr/src/
[[email protected] LAMP]# ls /usr/src
debug kernels mysql-5.6.25
[[email protected] LAMP]# mkdir -p /mysql25/mysql_basedir
[[email protected] LAMP]# mkdir /mysql25/data
[[email protected] LAMP]# id mysql
id: mysql: No such user
//-r创建一个系统用户,-s指定默认的shell /sbin/nologin 不能像其他用户一样登录操作系统
[[email protected] LAMP]# useradd -r mysql -s /sbin/nologin
[[email protected] LAMP]# su - mysql
su: warning: cannot change directory to /home/mysql: No such file or directory
This account is currently not available.
[[email protected] LAMP]# id mysql
uid=496(mysql) gid=493(mysql) groups=493(mysql)
[[email protected] LAMP]# ll -d /mysql25/
drwxr-xr-x 4 root root 4096 Apr 29 18:32 /mysql25/
[[email protected] LAMP]# chown -R mysql.mysql /mysql25/ 更改属主和属组为mysql
[[email protected] LAMP]# ll -d /mysql25/
drwxr-xr-x 4 mysql mysql 4096 Apr 29 18:32 /mysql25/
[[email protected] LAMP]# ll /mysql25/
total 8
drwxr-xr-x 2 mysql mysql 4096 Apr 29 18:32 data
drwxr-xr-x 2 mysql mysql 4096 Apr 29 18:32 mysql_basedir
2)进入到解压后的路径进行安装
[[email protected] ~]# cd /usr/src/mysql-5.6.25/
[[email protected] mysql-5.6.25]# pwd
/usr/src/mysql-5.6.25
根据需求配置:
查看官方文档
https://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html
vim /usr/src/mysql-5.6.25
cmake . -DCMAKE_INSTALL_PREFIX=/mysql25/mysql_basedir/ -DMYSQL_DATADIR=/mysql25/data -DENABLED_LOCAL_INFILE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DSYSCONFDIR=/mysql25/mysql_basedir/etc -DMYSQL_TCP_PORT=3307 -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_EXTRA_CHARSETS=all -DMYSQL_USER=mysql
编译:
make
安装:
make install
总结:
1.配置的时候,指定安装的路径,该路径可以存在也可以不存在,建议事先创建并且更改权限chown
2.系统默认自动创建,权限是root,需要自己更改
后续配置:(官方文档。。。2.2)
shell> scripts/mysql_install_db --user=mysql 默认初始化数据库到/var/lib/mysql
shell> bin/mysqld_safe --user=mysql & 启动mysql,&放在后台执行
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server
[[email protected] mysql_basedir]# scripts/mysql_install_db --user=mysql --basedir=/mysql25/mysql_basedir/ --datadir=/mysql25/data/
[[email protected] mysql_basedir]# ll /mysql25/data/
total 110604
-rw-rw---- 1 mysql mysql 12582912 Apr 30 14:30 ibdata1
-rw-rw---- 1 mysql mysql 50331648 Apr 30 14:30 ib_logfile0
-rw-rw---- 1 mysql mysql 50331648 Apr 30 14:30 ib_logfile1
drwx------ 2 mysql mysql 4096 Apr 30 14:30 mysql
drwx------ 2 mysql mysql 4096 Apr 30 14:30 performance_schema
drwx------ 2 mysql mysql 4096 Apr 30 14:30 test
初始化成功
尝试启动
[[email protected] mysql_basedir]# bin/mysqld_safe --user=mysql
190430 14:34:18 mysqld_safe Logging to '/var/log/mysqld.log'.
190430 14:34:18 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
190430 14:34:21 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
发现问题,查看日志解决
[[email protected] ~]# tail -f /var/log/mysqld.log
2019-04-30 14:35:04 2798 [ERROR] /mysql25/mysql_basedir/bin/mysqld: Can't create/write to file '/var/run/mysqld/mysqld.pid' (Errcode: 2 - No such file or directory)
2019-04-30 14:35:04 2798 [ERROR] Can't start server: can't create PID file: No such file or directory
190430 14:35:04 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
[[email protected] mysql_basedir]# ll /var/lib/mysql/
total 110596
-rw-rw---- 1 mysql mysql 56 Apr 30 14:34 auto.cnf
-rw-rw---- 1 mysql mysql 12582912 Apr 30 14:34 ibdata1
-rw-rw---- 1 mysql mysql 50331648 Apr 30 14:35 ib_logfile0
-rw-rw---- 1 mysql mysql 50331648 Apr 30 14:34 ib_logfile1
srwxrwxrwx 1 mysql mysql 0 Apr 30 14:35 mysql.sock
发现mysql.sock又写入到/var/lib/mysql/里了,那么问题应该是环境没有清理干净
[[email protected] mysql_basedir]# ls /etc/my.cnf
/etc/my.cnf
[[email protected] mysql_basedir]# rpm -qf /etc/my.cnf 果然发现5.1版本存在
mysql-libs-5.1.71-1.el6.x86_64
[[email protected] mysql_basedir]# cat /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
[[email protected] mysql_basedir]# bin/mysql --help
Default options are read from the following files in the given order: 读取顺序
/etc/my.cnf /etc/mysql/my.cnf /mysql25/mysql_basedir/etc/my.cnf ~/.my.cnf
发现/etc/my.cnf优先读取
总结:
在启动数据库时,默认会到/var/lib/mysql里去找相应文件,系统有一个默认的配置文件/etc/my.cnf,在该文件中定义了数据目录/var/lib/mysql
解决:
1.删除/etc/my.cnf
2.修改/etc/my.cnf
清空/var/lib/mysql/*
再次启动,进行验证
[[email protected] ~]# ps -ef|grep mysql
root 2883 2329 0 14:49 pts/0 00:00:00 /bin/sh bin/mysqld_safe --user=mysql
mysql 2973 2883 1 14:49 pts/0 00:00:00 /mysql25/mysql_basedir/bin/mysqld --basedir=/mysql25/mysql_basedir --datadir=/mysql25/data --plugin-dir=/mysql25/mysql_basedir/lib/plugin --user=mysql --log-error=/mysql25/data/lamp.err --pid-file=/mysql25/data/lamp.pid
root 2999 2827 0 14:50 pts/1 00:00:00 grep mysql
[[email protected] ~]# netstat -nltp|grep 3307
tcp 0 0 :::3307 :::* LISTEN 2973/mysqld
顺利启动
[[email protected] ~]# pkill -9 mysqld 结束mysqld
如果希望使用service方式启动mysql,可以做如下配置
[[email protected] mysql_basedir]# cp support-files/mysql.server /etc/init.d/mysql25
[[email protected] mysql_basedir]# vim /etc/init.d/mysql25 此处无需修改
[[email protected] mysql_basedir]# netstat -nltp|grep 3307
[[email protected] mysql_basedir]# service mysql25 start
Starting MySQL [ OK ]
[[email protected] mysql_basedir]# netstat -nltp|grep 3307
tcp 0 0 :::3307 :::* LISTEN 3133/mysqld
登录验证:
[[email protected] mysql_basedir]# bin/mysql
Welcome to the MySQL monitor. Commands end with ; or \\g.
Your MySQL connection id is 1
Server version: 5.6.25 Source distribution
更改环境变量,以便用mysql直接登录
临时更改:
[[email protected] mysql_basedir]# echo $PATH
/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
[[email protected] mysql_basedir]# export PATH=/mysql25/mysql_basedir/bin:$PATH
[[email protected] mysql_basedir]# mysql
Welcome to the MySQL monitor. Commands end with ; or \\g.
Your MySQL connection id is 2
Server version: 5.6.25 Source distribution
永久更改:
[[email protected] ~]# vim /etc/profile
。。。在文件最后增加以下
export PATH=/mysql25/mysql_basedir/bin:$PATH
[[email protected] ~]# source /etc/profile 重新读取配置文件
设置密码:
[[email protected] ~]# mysqladmin -uroot password '123'
Warning: Using a password on the command line interface can be insecure.
[[email protected] ~]# mysql -uroot -p123
https://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html 官方文档
https://dev.mysql.com/doc/refman/5.6/en/binary-installation.html通用二进制命令安装(后续配置参照)
四、编译安装Apache
环境准备
rpm -q httpd
rpm -e httpd --nodeps
先清空环境(卸载2.2版本)
1.安装依赖包apr
说明:
在RHEL6.5下直接编译apache的2.4版本,会报下面的错误:
checking for APR... configure: WARNING: APR version 1.4.0 or later is required,found 1.3.9
configure: WARNING: skipped APR at apr-1-config, version not acceptable
原因:表示系统自带的apr软件版本为1.3.9,但需要1.4.0以上的版本
解决方法:
第一种:把apache降为2.2系列
第二种:去下载新版本apr先编译,再编译apache调用它(选择第二种)
安装apr软件
[[email protected] LAMP]# ll
total 50156
-rwxr-xr-x 1 root root 826885 Apr 30 16:57 apr-1.5.2.tar.bz2
-rwxr-xr-x 1 root root 694427 Apr 30 16:57 apr-util-1.5.4.tar.bz2
-rwxr-xr-x 1 root root 5054838 Apr 30 16:57 httpd-2.4.12.tar.bz2
-rwxr-xr-x 1 root root 33203321 Apr 29 18:06 mysql-5.6.25.tar.gz
-rwxr-xr-x 1 root root 11569588 Apr 30 16:57 php-5.6.11.tar.xz
[[email protected] LAMP]# cd
[[email protected] ~]#
[[email protected] ~]# cd /LAMP/
[[email protected] LAMP]# ll
total 50156
-rwxr-xr-x 1 root root 826885 Apr 30 16:57 apr-1.5.2.tar.bz2
-rwxr-xr-x 1 root root 694427 Apr 30 16:57 apr-util-1.5.4.tar.bz2
-rwxr-xr-x 1 root root 5054838 Apr 30 16:57 httpd-2.4.12.tar.bz2
-rwxr-xr-x 1 root root 33203321 Apr 29 18:06 mysql-5.6.25.tar.gz
-rwxr-xr-x 1 root root 11569588 Apr 30 16:57 php-5.6.11.tar.xz
[[email protected] LAMP]# tar -xf apr-1.5.2.tar.bz2 -C /usr/src/
[[email protected] LAMP]# tar -xf apr-util-1.5.4.tar.bz2 -C /usr/src/
[[email protected] LAMP]# cd /usr/src/
[[email protected] src]# ll
total 20
drwxr-xr-x 27 1000 1000 4096 Apr 25 2015 apr-1.5.2
drwxr-xr-x 19 1000 1000 4096 Sep 17 2014 apr-util-1.5.4
drwxr-xr-x. 2 root root 4096 Sep 23 2011 debug
drwxr-xr-x. 3 root root 4096 Apr 18 21:18 kernels
drwxr-xr-x 35 7161 wheel 4096 Apr 29 22:14 mysql-5.6.25
[[email protected] src]# cd apr-1.5.2/
[[email protected] apr-1.5.2]# ls
apr-config.in build-outputs.mk helpers misc strings
apr.dep CHANGES include mmap support
apr.dsp CMakeLists.txt libapr.dep network_io tables
apr.dsw config.layout libapr.dsp NOTICE test
apr.mak configure libapr.mak NWGNUmakefile threadproc
apr.pc.in configure.in libapr.rc passwd time
apr.spec docs LICENSE poll tools
atomic dso locks random user
build emacs-mode Makefile.in README
buildconf encoding Makefile.win README.cmake
build.conf file_io memory shmem
[[email protected] apr-1.5.2]# ./configure
[[email protected] apr-1.5.2]# make
[[email protected] apr-1.5.2]# make install
默认安装到/usr/local
/usr/bin/install -c -m 755 apr-config.out /usr/local/apr/bin/apr-1-config
配置apr-util-1.5.4
[[email protected] apr-1.5.2]# cd ..
[[email protected] src]# ls
apr-1.5.2 apr-util-1.5.4 debug kernels mysql-5.6.25
[[email protected] src]# cd apr-util-1.5.4/
[[email protected] apr-util-1.5.4]# ./configure --with-apr=/usr/local/apr/bin/apr-1-config
[[email protected] apr-util-1.5.4]# make
[[email protected] apr-util-1.5.4]# make install
Libraries have been installed in:
/usr/local/apr/lib
/usr/bin/install -c -m 755 apu-config.out /usr/local/apr/bin/apu-1-config
以下操作配置库文件的默认检索路径
[[email protected] apr-util-1.5.4]# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
[[email protected] apr-util-1.5.4]# ll /etc/ld.so.conf.d/
total 20
-r--r--r--. 1 root root 324 Nov 22 2013 kernel-2.6.32-431.el6.x86_64.conf
-rw-r--r--. 1 root root 17 Nov 23 2013 mysql-x86_64.conf
-rw-r--r--. 1 root root 22 Sep 24 2011 qt-x86_64.conf
-rw-r--r-- 1 root root 276 Apr 29 17:37 vmware-tools-libraries.conf
-rw-r--r--. 1 root root 21 Oct 30 2013 xulrunner-64.conf
[[email protected] apr-util-1.5.4]# cat /etc/ld.so.conf.d/mysql-x86_64.conf
/usr/lib64/mysql
[[email protected] apr-util-1.5.4]# echo /usr/local/apr/lib/ > /etc/ld.so.conf.d/lamp.conf
[[email protected] apr-util-1.5.4]# ldconfig
[[email protected] apr-util-1.5.4]# cat /etc/ld.so.conf.d/lamp.conf
/usr/local/apr/lib/
思考:一个软件的库文件是有可能被其他软件所调用,那么其他软件能否找到你的库文件呢?
一般来说,库文件安装到/lib,/lib64,/usr/lib/,/usr/lib64等,都可以找到:但是如果一个软件A把库文件安装到/usr/local/A/lib下,就要把这个路径添加到 ldconfig 命令可以找到的路径列表里去,别人才能找到。
ldconfig是一个动态链接库管理命令:主要用途是在默认搜索目录(/lib,/lib64,/usr/lib/,/usr/lib64/)
一级动态库配置文件/etc/ld.so.conf中所列的目录中搜索出可共享的动态链接库。
问题:怎样将库文件的指定安装路径加入到 ldconfig命令的搜索列表中?
方法1:在/etc/ld.so.conf这个主配置文件里面加上一行,写上让别人要查找库文件的路径
方法2:在/etc/ld.so.conf.d/目录下创建一个*.conf结尾的文件,里面加入该路径即可
echo /usr/local/apr/lib/ > /etc/ld.so.conf.d/lamp.conf
ldconfig 加入该路径后,使用此命令让其生效
2.安装httpd软件
版本:httpd-2.4.12.tar.bz2
1.下载 http://archive.apache.org/dist/
2.解压
3.安装(解压的目录里)
[[email protected] ~]# cd /LAMP/
[[email protected] LAMP]# ls
apr-1.5.2.tar.bz2 httpd-2.4.12.tar.bz2 php-5.6.11.tar.xz
apr-util-1.5.4.tar.bz2 mysql-5.6.25.tar.gz
[[email protected] LAMP]# tar -xf httpd-2.4.12.tar.bz2 -C /usr/src/
[[email protected] LAMP]# cd /usr/src/
[[email protected] src]# ls
apr-1.5.2 apr-util-1.5.4 debug httpd-2.4.12 kernels mysql-5.6.25
[[email protected] src]# cd httpd-2.4.12/
[[email protected] httpd-2.4.12]# ls
ABOUT_APACHE CHANGES INSTALL os
acinclude.m4 CMakeLists.txt InstallBin.dsp README
Apache-apr2.dsw config.layout LAYOUT README.cmake
Apache.dsw configure libhttpd.dsp README.platforms
apache_probes.d configure.in LICENSE ROADMAP
ap.d docs Makefile.in server
build emacs-style Makefile.win srclib
BuildAll.dsp httpd.dsp modules support
BuildBin.dsp httpd.spec NOTICE test
buildconf include NWGNUmakefile VERSIONING
[[email protected] httpd-2.4.12]#
配置:
./configure --enable-modules=all --enable-mods-shared=all --enable-so --enable-rewrite --with-mpm=prefork --with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config
[[email protected] httpd-2.4.12]# vim apache.sh
[[email protected] httpd-2.4.12]# chmod +x apache.sh
[[email protected] httpd-2.4.12]# cat apache.sh
./configure --enable-modules=all --enable-mods-shared=all --enable-so --enable-rewrite --with-mpm=prefork --with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config
[[email protected] httpd-2.4.12]# ./apache.sh
报错
checking for pcre-config... false
configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
[[email protected] httpd-2.4.12]# yum list|grep pcre 检查有没有pcre
pcre.x86_64 7.8-6.el6 @anaconda-CentOS-201311272149.x86_64/6.5 已安装
mingw32-pcre.noarch 8.10-2.el6.5 local-yum
pcre.i686 7.8-6.el6 local-yum
pcre-devel.i686 7.8-6.el6 local-yum
pcre-devel.x86_64 7.8-6.el6 local-yum
pcre-static.x86_64 7.8-6.el6 local-yum
发现已安装,那么问题是pcre-devel没有安装
[[email protected] httpd-2.4.12]# yum -y install pcre-devel
安装之后再次执行配置脚本apache.sh
[[email protected] httpd-2.4.12]# ./apache.sh
[[email protected] httpd-2.4.12]# make
[[email protected] httpd-2.4.12]# make install
[[email protected] httpd-2.4.12]# ls /usr/local/apache2/
bin cgi-bin error icons logs manual
build conf htdocs include man modules
配置说明:
# ./configure --enable-modules=all \\ 加载所有支持模块
--enable-mods-shared=all \\ 共享方式加载大部分常用模块
--enable-so \\ 启用动态模块加载功能
--enable-rewrite \\ 启用地址重写功能
--with-mpm=prefork \\ 插入式并行处理模块,称为多路处理模块,Prefork是类UNIX平台上默认的MPM
--with-apr=/usr/local/apr/bin/apr-1-config \\ 指定依赖软件apr路径
--with-apr-util=/usr/local/apr/bin/apu-1-config
# make
# make install
# ls /usr/local/apache2/ 确认这个目录产生后,说明编译安装成功
五、编译安装PHP
版本:php-5.6.11.tar.xz
1.下载 https://www.php.net/releases/
2.解压
[[email protected] httpd-2.4.12]# cd /LAMP/
[[email protected] LAMP]# ls
apr-1.5.2.tar.bz2 httpd-2.4.12.tar.bz2 php-5.6.11.tar.xz
apr-util-1.5.4.tar.bz2 mysql-5.6.25.tar.gz
[[email protected] LAMP]# tar -xf php-5.6.11.tar.xz -C /usr/src/
[[email protected] LAMP]# cd /usr/src
[[email protected] src]# ls
apr-1.5.2 debug kernels php-5.6.11
apr-util-1.5.4 httpd-2.4.12 mysql-5.6.25
[[email protected] src]# cd php-5.6.11/
[[email protected] php-5.6.11]# pwd
/usr/src/php-5.6.11
3.安装(在解压目录里)
1)配置
[[email protected] php-5.6.11]# vim php.sh
[[email protected] php-5.6.11]# chmod +x php.sh
[[email protected] php-5.6.11]# ./php.sh
./php.sh: line 5: --with-mysqli=/mysql25/mysql_basedir/bin/mysql_config: No such file or directory
./php.sh: line 7: --with-zlib: command not found
./php.sh: line 26: --enable-calender: command not found
检查脚本文件的书写是否有误,一般都是因为 转义换行的\\没加,导致下面的错误
Thank you for using PHP.
config.status: creating php5.spec
config.status: creating main/build-defs.h
config.status: creating scripts/phpize
config.status: creating scripts/man1/phpize.1
config.status: creating scripts/php-config
config.status: creating scripts/man1/php-config.1
config.status: creating sapi/cli/php.1
config.status: creating sapi/cgi/php-cgi.1
config.status: creating ext/phar/phar.1
config.status: creating ext/phar/phar.phar.1
config.status: creating main/php_config.h
config.status: executing default commands
2)编译
[[email protected] php-5.6.11]# make
Build complete.
Don't forget to run 'make test'
3)安装
[[email protected] php-5.6.11]# make install
[[email protected] php-5.6.11]# ls /usr/local/apache2/modules/libphp5.so
/usr/local/apache2/modules/libphp5.so
配置说明:
# ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql/ \\ 要改成自定义的目录 /mysql25/mysql_basedir
--with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql \\ 链接mysql模块
--with-zlib --with-zlib-dir=/usr/local/mysql/zlib \\ 数据压缩用的函数库
--with-curl --enable-zip --with-gd --with-freetype-dir --with-jpeg-dir --with-png-dir --enable-sockets --with-xmlrpc --enable-soap --enable-opcache --enable-mbstring --enable-mbregex --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm
--enable-calendar --enable-bcmath
with-apxs2 调用apache加载模块支持PHP
gd 画图库
libiconv 字符变换转换
libmcrypt 字符加密
mcrypt 字符加密
mhash 哈希运算
make //make成功后,会显示让你make test,不用做
make install
ls /usr/local/apache2/modules/libphp5.so 确认有这个.so模块文件,就表示编译PHP成功
# ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/mysql25/mysql_basedir --with-mysqli=/mysql25/mysql_basedir/bin/mysql_config --with-pdo-mysql=/mysql25/mysql_basedir --with-zlib --with-zlib-dir=/mysql25/mysql_basedir/zlib --with-curl --enable-zip --with-gd --with-freetype-dir --with-jpeg-dir --with-png-dir --enable-sockets --with-xmlrpc --enable-soap --enable-opcache --enable-mbstring --enable-mbregex --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-calendar --enable-bcmath \\
参考https://www.jianshu.com/p/0a79847c8151
https://www.cnblogs.com/fps2tao/p/7884011.html
六、后续配置
1、配置apache和php的联系
1.修改apache配置文件
# vim /usr/local/apache2/conf/httpd.conf
1>配置优先支持中文
LoadModule negotiation_modules/mod_negotiation.so 此模块打开注释
Include conf/extra/httpd-languages.conf 打开此选项,扩展配置文件就生效了
# vim /usr/local/apache2/conf/extra/httpd-languages.conf 修改子配置文件
DefaultLanguage zh-CN 打开注释,默认语言集改为中文 (可无)
LanguagePriority zh-CN en ca ...语言及优先集,把zh-CN写到前面
2>配置apache对php支持 也就是apache和php的联系
# vim /usr/local/apache2/conf/httpd.conf
LoadeModule php5_module modules/libphp5.so 找这一句,在这句下面加上两句
AddHandler php5-script .php 添加两行,告诉httpd把.php文件交给模块去编译
AddType text/html .php 这两句的意思是以.php结尾的文件都认为是php程序文件,注意这两句的.php前面都是有一个空格的
3>默认主页加上index.php,并放在index.html前,支持php的首页文件
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
4>配置网站家目录 (此处暂不配置)
DocumentRoot "/web"
默认:/usr/local/apache2/htdocs/index.php
到第九节配置虚拟主机
[[email protected] ~]# vim /usr/local/apache2/conf/httpd.conf
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
2.让php支持链接本地的数据库
说明:
本地数据库一般是通过socket文件链接,而本地数据库的socket文件如果不在默认路径,就必须告诉php从哪里读取socket文件。
# cp /usr/src/php-5.6.11/php.ini-production /usr/local/lib/php.ini
vim /usr/local/lib/php.ini
...
[MySQL]
mysql.default_port=3307
mysql.default_socket = /mysql25/mysql_basedir
[MySQLi]
mysql.default_port=3307
mysql.default_socket = /mysql25/mysql_basedir
3.网站加目录里写php测试页
要跟随环境
DocumentRoot "/usr/local/apache2/htdocs"
[[email protected] ~]# cd /usr/local/apache2/htdocs
[[email protected] htdocs]# ls
index.html
[[email protected] htdocs]# mv index.html index.php
[[email protected] htdocs]# vim index.php
<?php
phpinfo();
?>
七、启动相关服务
启动数据库
启动apache
[[email protected] htdocs]# /usr/local/apache2/bin/apachectl start
AH00557: httpd: apr_sockaddr_info_get() failed for lamp
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[[email protected] htdocs]# netstat -nltp|grep 80
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1803/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 1380/cupsd
tcp 0 0 :::80 :::* LISTEN 3492/httpd
看到下图就表示lamp的编译安装和基本配置成功。
八、源码编译软件经验总结
4.思考总结
假设有一个软件aaa,安装到/usr/local和安装到/usr/local/aaa之间的区别?
- 安装到/usr/local下:
- 优点:
- 此软件的命令一般会安装到/usr/local/bin或者/usr/local/sbin等;
- 这些路径都默认在$PATH里,所以安装的命令可以直接使用,而不用使用绝对路径;
- 库文件一般都会安装到/usr/locallib下,所以把它加入ldconfig,以后所以安装在此目录的库文件都可以被找到
- 缺点:
- 不方便删除,因为很多软件都安装在/usr/local下
- 优点:
- 安装到/usr/local/aaa下:
- 优缺点与上面相反
- 建议:小软件默认安装在/usr/local下,大软件安装在/usr/local/软件名下
九、部署web应用
搭建Discuz论坛
Discuz_X3.2_SC_UTF8.zip Discuz论坛
phpwind_v9.0.1_utf8.zip wind论坛
phpMyAdmin-4.4.11-all-language.zip php写的mysql的管理工具(类似oracle的OEM)
wordpress-4.7.3-zh_CN.tar.gz 博客
需求:
搭建2个网站,一个个人博客,一个是web界面管理mysql数据库的应用
步骤:
1.创建两个目录来分别存放不同的网站
apache2.4版本用户为
User daemon
Group daemon
mkdir /webserver/admin,myblog -p
2.拷贝网站相关的数据到网站目录里
unzip phpMyAdmin-4.4.11-all-languages.zip -d /usr/src/
tar xf wordpress-4.7.3-zh_CN.tar.gz -C /usr/src
cd phpMyAdmin-4.4.11-all-languages/
ls
cp -a ./* /webserver/admin/
cd ..
cp -a wordpress/* /webserver/myblog/
修改权限
chown -R daemon. /webserver
3.通过虚拟主机将网站发布出去
虚拟主机:
# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/webserver/admin"
ServerName www.mysqladmin.cc
# ServerAlias www.dummy-host.example.com
ErrorLog "logs/dummy-host.example.com-error_log"
CustomLog "logs/dummy-host.example.com-access_log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/webserver/myblog"
ServerName www.myblog.net
ErrorLog "logs/dummy-host2.example.com-error_log"
CustomLog "logs/dummy-host2.example.com-access_log" common
</VirtualHost>
打开主配置文件里面的模块
[[email protected] ~]# vim /usr/local/apache2/conf/httpd.conf
# Virtual hosts
Include conf/extra/httpd-vhosts.conf 去掉注释
4.重启服务
/usr/local/apache2/bin/apachectl start
5.测试验证
出现403错误,首先查看目录权限都是daemon,接着查看主配置文件,修改如下
<Directory />
AllowOverride none
#Require all denied 版本原因,2.4的apache目录拒绝所有人访问
Require all granted
</Directory>
重启服务后重新测试
phpwind论坛:
# cp -a phpMyAdmin-4.0.2-all-language/* /webserver/bbswind
# cd /webserver/bbswind
# mv config.sample.inc.php config.inc.php
$cfg['blowfish_secret']='a8sfdfkjsafaf';随便修改
。。。
$cfg['Servers'][$i]['host'] = 'localhost'; 如果登录不成功尝试修改为127.0.0.1
排错1:
排错2:
第一个原因:数据库用户名密码不对
第二个原因:本机不允许连接
[[email protected] admin]# cp config.sample.inc.php config.inc.php
[[email protected] admin]# vim config.inc.php
#$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['host'] = '127.0.0.1';
修改之后重启服务果然能够登陆成功
排错3:
先在本机数据库建立一个myblog的database
? 然后进入本机浏览器www.myblog.net,点击 现在就开始 ,然后依次输入myblog--->root--->123,点击提交,出现下图错误。
[[email protected] myblog]# cp wp-config-sample.php wp-config.php
[[email protected] myblog]# vim wp-config.php
/** WordPress数据库的名称 */
define('DB_NAME', 'myblog');
/** MySQL数据库用户名 */
define('DB_USER', 'root');
/** MySQL数据库密码 */
define('DB_PASSWORD', '123');
点击重试之后提交,又出错
现在进入到mysql里面删除myblog数据库,再次重建,然后进入网页刷新,清空缓存,出现下面的错误,这个时候只能是思考配置文件的问题
检查一下/myblog下面的文件权限
再次测试,还是错误
[[email protected] myblog]# chown daemon. wp-config.php
[[email protected] myblog]# vim wp-config.php
// ** MySQL 设置 - 具体信息来自您正在使用的主机 ** //
/** WordPress数据库的名称 */
define('DB_NAME', 'myblog');
/** MySQL数据库用户名 */
define('DB_USER', 'root');
/** MySQL数据库密码 */
define('DB_PASSWORD', '123');
/** MySQL主机 */
define('DB_HOST', '127.0.0.1'); 修改为127.0.0.1
[[email protected] myblog]# /usr/local/apache2/bin/apachectl restart
AH00557: httpd: apr_sockaddr_info_get() failed for lamp
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
测试
大功告成!
以上是关于Linux基于LAMP架构搭建个人论坛网站的主要内容,如果未能解决你的问题,请参考以下文章