1、拉取nginx镜像,以及php-fpm镜像 docker pull nginx:1.16.0 docker pull php:5.6.40-fpm 2、分别创建nginx 容器php-fpm 容器 # 这里最后吧 /etc/nginx/conf.d 目录和存放静态资源文件的目录挂载到宿主机上来 ...
分类:
Web程序 时间:
2021-07-27 17:31:51
阅读次数:
0
依赖安装 # 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。 yum install curl openssh-server openssh-clients postfix cronie - ...
分类:
其他好文 时间:
2021-07-19 16:46:25
阅读次数:
0
CentOS7防火墙命令有变化: CentOS7: systemctl status firewalld.service 查看防火墙状态 systemctl stop firewalld.service 本次访问关闭防火墙 systemctl disable firewalld.service 从下 ...
分类:
其他好文 时间:
2021-07-05 18:49:21
阅读次数:
0
1、启动服务 systemctl restart mysqld.service 报错: 启动数据库Can‘t connect to MYSQL server through socket ''var/lib/mysql/mysql.cock(146 lock timed out:Retry tran ...
分类:
数据库 时间:
2021-07-05 17:35:04
阅读次数:
0
Linux常用命令 1、系统命令 runlevel # 查看当前的运行级别 systemctl status firewalld # 开启网络服务功能 stop # 关闭 restart # 重启 reload # 重载 reboot # 重启 halt # 关机 poweroff # 关机 2、查 ...
分类:
系统相关 时间:
2021-07-01 16:41:50
阅读次数:
0
1.购买阿里云 1)购买链接:https://developer.aliyun.com/plan/grow-up 2)购买完毕后,重置服务器root用户密码 3)连接阿里云服务器 方法一:通过可视化软件Xshel // 使用前绿化,新建一个会话 方法二:windows终端 >ssh root@47. ...
分类:
其他好文 时间:
2021-06-29 15:48:15
阅读次数:
0
TCP源码分析 - 三次握手之 connect 过程 本文主要分析 TCP 协议的实现,但由于 TCP 协议比较复杂,所以分几篇文章进行分析,这篇主要介绍 TCP 协议建立连接时的三次握手过程。 TCP 协议应该是 TCP/IP 协议栈中最为复杂的一个协议(没有之一),TCP 协议的复杂性来源于其面 ...
分类:
其他好文 时间:
2021-06-28 17:41:33
阅读次数:
0
一、问题 有时候我们登录Mysql输入密码的时候,会出现这种情况 mysql -u root -p Enter Password > '密码' 错误:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwo ...
分类:
数据库 时间:
2021-06-18 20:10:32
阅读次数:
0
一、安装(基于docker-compose) 使用docker安装Nginx非常简单,只需要准备如下YML文件即可: version: "3" services: nginx12: restart: always image: daocloud.io/library/nginx:1.12.0 con ...
分类:
其他好文 时间:
2021-06-17 16:49:40
阅读次数:
0
xshell无法通过密码登录的问题如下: 1、登录主机:vi /etc/ssh/sshd_config 2、搜索关键字:PasswordAuthentication 3、将PasswordAuthentication no改为yes 4、保存后重启网络设置:service sshd restart ...
分类:
系统相关 时间:
2021-06-13 10:49:47
阅读次数:
0