前面安装docker的过程就不提了 1.创建目录 mkdir -p /lnmp/{php,nginx,mysql,redis} mkdir -p /lnmp/mysql/{conf,data} mkdir -p /lnmp/nginx/conf.d 2.生成mysql容器 docker run -- ...
分类:
系统相关 时间:
2020-07-19 11:38:38
阅读次数:
82
构建LNMP+WordPress 1.安装LNMP环境 修改主机名 [root@test ~]# hostnamectl set-hostname lnmp [root@test ~]# bash 将提供的lnmp1.6-full.tar.gz软件包,上传到虚拟机的/root目录下,并解压 [roo ...
分类:
其他好文 时间:
2020-07-17 19:40:40
阅读次数:
81
!!!首先要做的就是关闭系统的防火墙以及selinux: systemctl stop firewalld systemctl disable firewalld sed -ri 's/^(Selinux=).*/\1disabled/g' /etc/selinux/config setenforc ...
分类:
其他好文 时间:
2020-07-16 12:19:43
阅读次数:
75
一、编译安装nginx 1、下载nginx # wget http://nginx.org/download/nginx-1.16.1.tar.gz 2、安装源码安装依赖软件:pcre-devel zlib-devel gcc gcc-c++ make 检测依赖是否安装 #rpm -q pcre-d ...
分类:
其他好文 时间:
2020-07-12 16:55:15
阅读次数:
71
前提:安装好了docker-ce。systemctlstartdockersystemctlenabledockeriptables-Xiptables-Fserviceiptablessave1、部署nginx:dockerrun-it-d-p80:80-v/usr/share/nginx/html/:/usr/share/nginx/html/-v/etc/nginx/conf.d/:/etc
分类:
其他好文 时间:
2020-07-10 09:36:54
阅读次数:
64
本篇文章主要是描述docker中对Mysql的操作,同时学习容器之间的通信问题,目前架构情况如下: 1、数据库连接使用 在docker中启动Mysql服务后,可以使用两种方法对Mysql进行操作(连接Mysql数据库需要的是IP和端口): ##使用Mysql容器里的ip连接数据库(该方法的前提是连接 ...
分类:
其他好文 时间:
2020-07-09 15:18:53
阅读次数:
58
1.安装Nginx 1)使用Nginx官方的yum源 [root@localhost ~]# vim /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$bas ...
分类:
Web程序 时间:
2020-07-06 16:18:11
阅读次数:
81
本次操作在Ubuntu18系统下操作,如在Centos系统下安装,命令可能会有区别,但是原理相同 前置条件:已经安装好docker,配置好yum源并且运行。 1.获取Mysql镜像并启动: root@test:/etc/apt# docker pull mysql:5.7 ## -d,--detac ...
分类:
其他好文 时间:
2020-07-06 15:55:24
阅读次数:
68
背景介绍: 用户通过浏览器访问Nginx -> html下的mysql.php文件,去连接Mysql数据库的一个测试 正文: 1.检查确保nginx、php-fpm、mysql的服务都是正常启动的 2.mysql.php测试Mysql的代码 //这里要说明一下,PHP5和PHP7连接Mysql的区别 ...
分类:
数据库 时间:
2020-07-03 01:13:42
阅读次数:
106
正文: php官网:https://www.php.net/ 搜狐镜像源:http://mirrors.sohu.com/ (推荐,国内源下载速度嗖嗖的) 1.php编译安装前解决依赖包 yum -y install epel-release yum -y install gcc gcc-c++ m ...
分类:
Web程序 时间:
2020-06-30 22:37:07
阅读次数:
86