LNMP+Redis架构部署
工作机制
- L(Linux)N(Nginx)M(Mysql)P(PHP)架构想必大家都知道,LNMP架构主要作用是让前端服务与后端存储以及后端的一下服务进行连接起来,来实现php程序的动态请求。
而今天我们又在LNMP架构上面加一个Redis程序,而Redis在整个架构中起到了一个数据缓存的作用。
- LNMP+Redis工作机制:当用户通过浏览器访问网站时,并使用账号密码进行登陆时,此时会向Redis发出查询请求,若Redis缓存中没有相关信息,则php会查询mysql数据库中的相关信息,然后将相关信息缓存在redis中;在下次此用户访问时,php无需再从mysql数据库中读取数据,直接从redis中读取缓存并将数据返回,这样就可以减少数据库的读取压力。
- 下面是简单的工作机制示意图
系统环境描述
- Linux系统版本:我这里使用的是Ubuntu系统,大家可以选用不同的Linux版本
jia@uduntu:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 19.10
Release: 19.10
Codename: eoan
- Nginx软件版本
nginx/ (Ubuntu)
- PHP软件版本
-0ubuntu0. amd64
- MariaDB软件版本
:- all
- Redis软件版本
:-2build1 all
部署Nginx
Nginx描述:Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了MAP/POP3/SMTP服务。Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好。
安装
安装Nginx软件包有很多种方法比如:RPM包安装、编译安装等,我在这里软件就全部使用RPM进行安装了
jia@uduntu:~$ sudo apt -y install nginx Setting up fonts-dejavu-core () ... Setting up libjpeg-turbo8:amd64 (-0ubuntu1) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up libnginx-mod-mail (-0ubuntu2) ... Setting up fontconfig-config (-2ubuntu2) ... Setting up libnginx-mod-stream (-0ubuntu2) ... Setting up libtiff5:amd64 (+git191003-) ... Setting up libfontconfig1:amd64 (-2ubuntu2) ... Setting up libgd3:amd64 (-5.2) ... Setting up libnginx-mod-http-image-filter (-0ubuntu2) ... Setting up nginx-core (-0ubuntu2) ... Setting up nginx (-0ubuntu2) ... Processing triggers for ufw (0.36-1ubuntu3) ... Processing triggers -7ubuntu3) ... Processing triggers -) ... Processing triggers for libc-bin (2.30-0ubuntu2) ... jia@uduntu:~$
出现上面字符即为安装成功
启动
程序启动有两种方法
- 作为系统服务进行启动,启动方法:
Ubuntu以及rhel7以上版本使用下面方式:
systemctl start nginx \\启动Nginx systemctl stop nginx \\停止Nginx systemctl restart nginx \\重新启动Nginx
rhel7一下版本使用下面方式:
server nginx start \\启动Nginx server nginx stop \\停止Nginx server nginx restart \\重新启动Nginx
- 使用Nginx启动脚本进行控制Nginx启停:
sh nginx \\启动Nginx 停止nginx可以使用结束进程的方式进行停止
测试并访问
接下来让我们启动nginx并进行访问:
jia@uduntu:~$ systemctl start nginx \\我这里使用的非root用户所以要求输入密码 ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units === Authentication is required to start 'nginx.service'. Authenticating as: jia Password: ==== AUTHENTICATION COMPLET jia@uduntu:~$
启动成功后访问:
访问地址:
http://Server IP Address
看到下面内容证明安装并启动成功:
部署PHP
PHP描述:PHP即“超文本预处理器”,是一种通用开源脚本语言。PHP是在服务器端执行的脚本语言,与C语言类似,是常用的网站编程语言。PHP独特的语法混合了C、Java、Perl以及 PHP 自创的语法。利于学习,使用广泛,主要适用于Web开发领域。
安装
jia@uduntu:~$ sudo apt -y install php php7.-fpm [sudo] password for jia: //这里正常输入密码 \\安装最后出现下面显示表示安装成功 Creating config file /etc/php/7.3/mods-available/json.ini with new version Setting up php7.-readline (-0ubuntu0.) ... Creating config file /etc/php/7.3/mods-available/readline.ini with new version Setting up php7.-cli (-0ubuntu0.) ... update-alternatives: to provide /usr/bin/php (php) in auto mode update-alternatives: to provide /usr/bin/phar (phar) in auto mode update-alternatives: to provide /usr/bin/phar.phar (phar.phar) in auto mode Creating config file /etc/php/7.3/cli/php.ini with new version Setting up php7.-fpm (-0ubuntu0.) ... Creating config file /etc/php/7.3/fpm/php.ini with new version Created symlink /etc/systemd/system/multi-user.target.wants/php7.-fpm.service → /lib/systemd/system/php7.-fpm.service. Setting up php7. (-0ubuntu0.) ... Setting up php (:7.3+69ubuntu2) ... Processing triggers -) ... Processing triggers -7ubuntu3) ...
启动
上面已经给大家说过Nginx的启动方法了,php启动方法与Nginx基本一样
jia@uduntu:~$ systemctl start php7.-fpm ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units === Authentication is required to start 'php7.3-fpm.service'. Authenticating as: jia Password: \\输入密码 ==== AUTHENTICATION COMPLETE === jia@uduntu:~$
启动成功,可以使用查看进程的方式进行查看
jia@uduntu:~$ ps uax | grep php \\下面进程表示php运行进程 root ? Ss : : php-fpm: master process (/etc/php/7.3/fpm/php-fpm.conf) www-data ? S : : php-fpm: pool www www-data ? S : : php-fpm: pool www jia pts/ S+ : : grep --color=auto php jia@uduntu:~$
配置Nginx
php启动成功后下面配置Nginx,让Nginx接收到的php请求转交给php服务器进行解析
nginx配置文件:
server { listen default_server; listen [::]: default_server; root /var/www/html; index index.html index.htm index.nginx-debian.html index.php ; \\此处需要在后面添加index.php server_name _; location / { try_files $uri $uri/ =; } location ~ \.php$ { \\取消注释 include snippets/fastcgi-php.conf; \\取消注释 fastcgi_pass unix:/-fpm.sock; \\这一行和下面一行指的是php侦听方式,查看php是侦听那种方式然后取消注释哪一行 fastcgi_pass ; \\ }
在php-fpm配置文件种查看php的侦听方式:
listen = /run/php/php7.-fpm.sock \\这种侦听方式适用于本地php listen = \\这种侦听方式适用于远程PHP
看你的那个php是那种方式侦听的,然后将nginx配置文件中的一行取消注释,然后再重新启动nginx使改动生效
测试
默认网页代码的存放位置:
/var/www/html
测试只需要将index,html该名为index.php,内容更改为你的php代码
我的php代码内容为:
<?php phpifo(); ?>
下面来访问一下,访问地址不变
只要可以解析PHP代码了就表示配置安装成功
部署MariaDB
部署MariaDBMariaDB描述:MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可 MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品。MariaDB基于事务的Maria存储引擎,替换了MySQL的MyISAM存储引擎,它使用了Percona的 XtraDB,InnoDB的变体,分支的开发者希望提供访问即将到来的MySQL 5.4 InnoDB性能。这个版本还包括了 PrimeBase XT (PBXT) 和 FederatedX存储引擎。
安装
jia@uduntu:~$ sudo apt -y install mariadb-server Setting up mariadb-client-10.3 (1:10.3.17-1) ... Setting up libdbd-mysql-perl:amd64 (4.050-2build1) ... Setting up libhtml-parser-perl (3.72-3build2) ... Setting up mariadb-server-10.3 (1:10.3.17-1) ... Created symlink /etc/systemd/system/mysql.service → /lib/systemd/system/mariadb.service. Created symlink /etc/systemd/system/mysqld.service → /lib/systemd/system/mariadb.service. Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /lib/systemd/system/mariadb.service. Setting up libhttp-message-perl (6.18-1) ... Setting up libcgi-pm-perl (4.44-1) ... Setting up libhtml-template-perl (2.97-1) ... Setting up mariadb-server (1:10.3.17-1) ... Setting up libcgi-fast-perl (1:2.15-1) ... Processing triggers for systemd (242-7ubuntu3) ... Processing triggers for man-db (2.8.7-3) ... Processing triggers for libc-bin (2.30-0ubuntu2) ... jia@uduntu:~$ \\出现上面代码表示安装成功
启动
同Nginx:
jia@uduntu:~$ systemctl start mariadb ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units === Authentication is required to start 'mariadb.service'. Authenticating as: jia Password: \\此处输入密码 ==== AUTHENTICATION COMPLETE === jia@uduntu:~$
查看是否启动成功:
jia@uduntu:~$ ps uax | grep mysqld mysql 11669 0.2 11.5 1713056 78488 ? Ssl 09:17 0:00 /usr/sbin/mysqld jia 12614 0.0 0.1 6296 924 pts/0 S+ 09:23 0:00 grep --color=auto mysqld jia@uduntu:~$
初始化数据库:
jia@uduntu:~$ sudo mysql_secure_installation \\下面是初始化过程 NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and you haven't set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MariaDB root user without the proper authorisation. Set root password? [Y/n] y New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! By default, a MariaDB installation has an anonymous user, allowing anyone to log into MariaDB without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... Success! By default, MariaDB comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB installation should now be secure. Thanks for using MariaDB! jia@uduntu:~$
初始化完成后,可直接使用自带的mysql客户端进行连接
jia@uduntu:~$ sudo mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 56 Server version: 10.3.17-MariaDB-1 Ubuntu 19.10 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | ifnormation_schema | | mysql | | performance_schema | +--------------------+ 3 rows in set (0.000 sec) MariaDB [(none)]>
配置php支持
安装php连接数据库的中间件:php-mysql
jia@uduntu:~$ sudo apt -y install php-mysql Preparing to unpack .../php-mysql_2%3a7.3+69ubuntu2_all.deb ... Unpacking php-mysql (2:7.3+69ubuntu2) ... Setting up php7.3-mysql (7.3.11-0ubuntu0.19.10.1) ... Creating config file /etc/php/7.3/mods-available/mysqlnd.ini with new version Creating config file /etc/php/7.3/mods-available/mysqli.ini with new version Creating config file /etc/php/7.3/mods-available/pdo_mysql.ini with new version Setting up php-mysql (2:7.3+69ubuntu2) ... Processing triggers for php7.3-fpm (7.3.11-0ubuntu0.19.10.1) ... jia@uduntu:~$ //安装成功
配置php.ini文件,将配置文件中extension=mysqli这一行取消注释就可以了,然后重新启动php-fpm
jia@uduntu:/etc/php/7.3/fpm$ systemctl restart php7.3-fpm ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units === Authentication is required to restart 'php7.3-fpm.service'. Authenticating as: jia Password: \\输入密码 ==== AUTHENTICATION COMPLETE === jia@uduntu:/etc/php/7.3/fpm$
测试
测试php是否可使用数据库,最好的方法就是使用php代码写一个连接数据库就可以了
代码如下:
<?php $host = "localhost"; //mysql主机 $user = "root"; //mysql用户 $passwd = "redhat"; //mysql密码 $conn = new mysqli($host,$user,$passwd); if (!$conn){ die("连接数据库失败"); } echo "连接数据库成功"; ?>
显示数据库连接成功示安装成功
部署Redis
Redis描述:Redis(全称:Remote Dictionary Server 远程字典服务)是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。
安装
jia@uduntu:~$ sudo apt -y install redis \\出现下面提示表示安装成功 Setting up lua-cjson:amd64 (2.1.0+dfsg-2.1) ... Setting up libatomic1:amd64 (9.2.1-9ubuntu2) ... Setting up lua-bitop:amd64 (1.0.2-5) ... Setting up liblua5.1-0:amd64 (5.1.5-8.1build3) ... Setting up libhiredis0.14:amd64 (0.14.0-3) ... Setting up redis-tools (5:5.0.5-2build1) ... Setting up redis-server (5:5.0.5-2build1) ... Created symlink /etc/systemd/system/redis.service → /lib/systemd/system/redis- server.service. Created symlink /etc/systemd/system/multi-user.target.wants/redis-server.service → /lib/systemd/system/redis-server.service. Setting up redis (5:5.0.5-2build1) ... Processing triggers for systemd (242-7ubuntu3) ... Processing triggers for man-db (2.8.7-3) ... Processing triggers for libc-bin (2.30-0ubuntu2) ... jia@uduntu:~$
启动
启动等同于Nginx启动
jia@uduntu:~$ sudo systemctl start redis
启动成功后进行检查
jia@uduntu:~$ sudo netstat -anpl | grep redis tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 2094/redis-server 1 tcp6 0 0 ::1:6379 :::* LISTEN 2094/redis-server 1 jia@uduntu:~$
可以看到redis端口(6379)就证明启动成功
下面让我们使用redis客户端测试一下:
jia@uduntu:~$ sudo redis-cli \\启动redis客户端 127.0.0.1:6379> set test "hellow word" \\设置变量 OK 127.0.0.1:6379> get test \\输出变量 "hellow word" 127.0.0.1:6379> del test \\删除变量 (integer) 1 127.0.0.1:6379> get test (nil) 127.0.0.1:6379>
上面测试可以看出redis安装成功,并启动成功
配置php支持
安装php连接redis中间件
jia@uduntu:~$ sudo apt -y install php-redis \\输出以下内容表示安装成功 Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: php-igbinary The following NEW packages will be installed: php-igbinary php-redis 0 upgraded, 2 newly installed, 0 to remove and 18 not upgraded. Needto get 239 kB of archives. After this operation, 1,052 kB of additional disk space will be used. Get:1 http://cn.archive.ubuntu.com/ubuntu eoan/universe amd64 php-igbinary amd64 3.0.0- 1build1 [101 kB] Get:2 http://cn.archive.ubuntu.com/ubuntu eoan/universe amd64 php-redis amd64 5.0.2+4.3.0-2build1 [138 kB] Fetched 239 kB in 13s (19.0 kB/s) Selecting previously unselected package php-igbinary. (Reading database ... 70748 files and directories currently installed.) Preparing to unpack .../php-igbinary_3.0.0-1build1_amd64.deb ... Unpacking php-igbinary (3.0.0-1build1) ... Seleting previously unselected package php-redis. Preparing to unpack .../php-redis_5.0.2+4.3.0-2build1_amd64.deb ... Unpacking php-redis (5.0.2+4.3.0-2build1) ... Setting up php-igbinary (3.0.0-1build1) ... Setting up php-redis (5.0.2+4.3.0-2build1) ... jia@uduntu:~$
安装成功后,配置php支持redis
找到php.ini这个配置文件,添加下面配置,找到exension=mysql这一条,然后将下面代码粘贴到下一行
extension=redis.so
测试
测试php是否可以使用redis,下面页面简单既可以进行测试
<?php $redis = new Redis(); \\redis连接参数 $redis->connect('127.0.0.1', 6379); \\括号内第一项是指的redis server ip,第二项是 redis port echo "Connection to server successfully </br>"; echo "Server is running: " . $redis->ping(); ?>
将/var/www/html下面的index.php文件内容替换为上面内容,然后直接访问即可
连接地址:
http://nginx server ip
显示下面内容表示连接成功
Connection to server successfully Server is running: 1
LNMP+Redis架构部署的更多相关文章
- LNMP架构部署
第1章 部署LNMP架构步骤 1.1 ①部署Linux系统(OK) 基本优化完成(ip地址设置 yum源更新 字符集设置) 安全优化完成(iptables关闭 selinux关闭 /tmp/ 1777 ...
- 九.LNMP网站架构实践部署
期中集群架构-第九章-期中架构LNMP章节====================================================================== 01. LNMP ...
- 使用Docker 一键部署 LNMP+Redis 环境
使用Docker 部署 LNMP+Redis 环境 Docker 简介 Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的 Linu ...
- 用lnmp架构部署wordpress网站详细步骤
用lnmp架构部署wordpress网站 ①.下载和上传网站代码 用winscp或者xftp, 或者xshell下执行rz命令进行上传网站的包文件. ②.解压程序代码,并将程序代码保存到站点目录,并进 ...
- 《Linux就该这么学》培训笔记_ch20使用LNMP架构部署动态网站环境
<Linux就该这么学>培训笔记_ch20使用LNMP架构部署动态网站环境 文章最后会post上书本的笔记照片. 文章主要内容: 源码包程序 LNMP动态网站架构 配置Mysql服务 配置 ...
- 三十九.NoSQL概述 部署Redis服务 、 部署LNMP+Redis
1. 搭建Redis服务器 在主机 192.168.4.50 上安装并启用 redis 服务 设置变量test,值为123 查看变量test的值 1.1 搭建redis服务器 1.1.1 安装re ...
- linux运维、架构之路-Lnmp架构部署
一.Lnmp架构原理 二. Lnmp架构软件安装 1.Nginx安装脚本 #!/bin/bash useradd -s /sbin/nologin -M www mkdir -p /server/to ...
- 第一章· Redis入门部署及持久化介绍
Redis简介 Redis安装部署 Redis持久化 Redis简介 软件说明: Redis是一款开源的,ANSI C语言编写的,高级键值(key-value)缓存和支持永久存储NoSQL数据库产品. ...
- 如何搭建高可用redis架构?
如何搭建高可用redis架构? 温国兵 架构师小秘圈 昨天 作者:温国兵,曾任职于酷狗音乐,现为三七互娱 DBA.目前主要关注领域:数据库自动化运维.高可用架构设计.数据库安全.海量数据解决方案.以及 ...
随机推荐
- jsonp 跨域Uncaught SyntaxError: Unexpected token :解决方法
[jQuery]Ajax实现跨域访问JSON Ajax跨域访问JSON 环境:.net4.0+jQuery+JSON.net 因为在跨域实现,所以这里新建网站,这个网站只需要Ashx文件 public ...
- 虚拟机上安装centos8.0
一.准备宿主机 为了培训Hadoop生态的部署和调优技术,需要准备3台虚拟机部署Hadoop集群环境,能够保证HA,即主要服务没有单点故障,可执行基本功能,完成小内存模式的参数调整. 1.1.准备安装 ...
- centos7 安装 mysql5.7 版本(全)
centos 安装 版本说明 :centos7,mysql5.7 ,不是 centos7 可能有些命令不兼容 安装 mysql-server # 下载并安装 mysql yum wget -i -c ...
- JAVA中JDK开发环搭的搭建,jvm jre
1.JDK的下载与安装: www.oracle.com 安装需要注意的是:不能把jdk安装到有空格或中文的文件夹中,建议大家在某个目录下创建一个JavaWeb的文件夹,然后把所学的java所有内容(后 ...
- STM32串口IAP分享
什么是IAP? IAP是In Application Programming的首字母缩写,IAP是用户自己的程序在运行过程中对User Flash的部分区域进行烧写,目的是为了在产品发布后可以方便地通 ...
- javascript语言学习
本课将和大家一起学习简单的js dom 操作,涵盖DOM API以及JQuery的方法. 相关简介 JavaScript一种直译式脚本语言,是一种动态类型.弱类型.基于原型的语 ...
- PHP get_class_vars 和 (array)
<?php class Girl { public $id = 1; public $name = 'zhy'; } $start = microtime(TRUE); var_dump(get ...
- Vue 实现点击空白处隐藏某节点(三种方式:指令、普通、遮罩)
在项目中往往会有这样的需求: 弹出框(或Popover)在 show 后,点击空白处可以将其 hide. 针对此需求,整理了三种实现方式,大家按实际情况选择. 当然,我们做项目肯定会用到 UI 框架, ...
- [BZOJ29957] 楼房重建 - 线段树
2957: 楼房重建 Time Limit: 10 Sec Memory Limit: 256 MBSubmit: 3294 Solved: 1554[Submit][Status][Discus ...
- C# 结合 Golang 开发
1. 实现方式与语法形式 基本方式:将 Go 程序编译成 DLL 供 C# 调用. 1.1 Go代码 注意:代码中 export 的注释是定义的入口描述不能省略 package main import ...