上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: 一、NFS服务简介 NFS 就是 Network FileSystem 的缩写,最早之前是由sun 这家公司所发展出来的。 它最大的功能就是可以透过网络,让不同的机器、不同的操作系统、可以彼此分享个别的档案 (share files)。所以,你也可以简单的将他看做是一个文件服务器 (file ser 阅读全文
posted @ 2019-02-12 14:25 MegaloBox 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 解决办法: tracut:/# lvm vgscan tracut:/# lvm vgchange -ay tracut:/# exit 阅读全文
posted @ 2019-01-25 12:58 MegaloBox 阅读(2815) 评论(4) 推荐(1) 编辑
摘要: 首先去安装一个邮件服务 然后在~/.bash_profile文本中添加如下代码: #!/bin/sh echo "$USER@`hostname` login from ${SSH_CLIENT%% *} at $(date+%F' '%T)"|mail -s "Message for $USER 阅读全文
posted @ 2018-12-28 14:02 MegaloBox 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 一、nginx和php-fpm的关系和分工 nginx是web服务器,php-fpm是一个PHPFastCGI进程管理器,两者遵循fastcgi的协议进行通信,nginx负责静态类似html文件的处理,php-fpm负责php脚本语言的执行,这么设计的目的是为了解耦前端nginx和后端的php,不至 阅读全文
posted @ 2018-12-20 17:55 MegaloBox 阅读(756) 评论(0) 推荐(0) 编辑
摘要: 1、CGI是干嘛的? CGI是为了保证web server传递过来的数据是标准格式的,方便CGI程序的编写者。 web server(比如说nginx)只是内容的分发者。比如,如果请求/index.html,那么web server会去文件系统中找到这个文件,发送给浏览器,这里分发的是静态数据。好了 阅读全文
posted @ 2018-12-19 20:40 MegaloBox 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1. 查看镜像id sudo docker images REPOSITORY TAG IMAGE ID CREATED SIZE quay.io/calico/node v1.0.1 c70511a49fa1 6 weeks ago 257 MB hello-world latest 48b512 阅读全文
posted @ 2018-10-24 19:17 MegaloBox 阅读(1773) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-09-11 15:53 MegaloBox 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 废话我也不多说了,走了很多坑,直接说搭建流程。。。 目标服务器:10.0.3.11 源服务器:10.0.3.10 最终目的:将 源服务器 指定目录下的文件或目录 拷贝到 目标服务器指定目录下 目标服务器操作步骤 安装rsync yum install rsync -y 修改rsyncd.conf配置 阅读全文
posted @ 2018-09-10 17:49 MegaloBox 阅读(200) 评论(0) 推荐(1) 编辑
摘要: 1、nginx.conf 2、php-fpm.conf 3、sysctl.conf 阅读全文
posted @ 2018-09-04 14:39 MegaloBox 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 负载均衡 使用场景: ①购买一个负载均衡LB实例 ②一级、二级域名都解析到VIP上 ③创建HTTP/HTTPS监听器 ④绑定云主机 在nginx中只需要配置好伪静态和相关设置就ok了 阅读全文
posted @ 2018-09-03 18:03 MegaloBox 阅读(677) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页