如果Nginx没有仅仅只能代理一台服务器的话,那它也不可能像今天这么火,Nginx可以配置代理多台服务器,当一台服务器宕机之后,仍能保持系统可用。具体配置过程如下:
1. 在http节点下,添加upstream节点。
upstream libaocai{
server 10.0....
苏 demo
8年前 (2017-05-11)
2693℃
0喜欢
nginx 配置文件
server {
listen 80;
server_name xxx.com;
access_log /data/wwwlogs/xxx.com_nginx.log combined;
index index.html i...
苏 demo
8年前 (2017-04-26)
3271℃
22喜欢
操作步骤
1.通过命令生成ssl key
openssl genrsa -des3 -out ssl.key 1024
注:生成这个key的时候会让你输入密码(必填),因为以后要给nginx使用,而且每次reload nginx配置时候都要你验证这个PAM密码的。so,我们可以先...
苏 demo
8年前 (2017-04-26)
2861℃
22喜欢
如何挂载数据盘?
博主以前写过几篇文章,详细说过怎么进行挂载硬盘。
参见:
1.阿里云Linux挂载硬盘
2.Linux 下挂载硬盘的 方法
这里,再介绍一款shell脚本,能够实现自动化挂载磁盘。
wget http://mirrors.linuxeye.com/scripts...
苏 demo
8年前 (2017-04-11)
4493℃
0评论
21喜欢
本教程是基于已安装oneinstack 的基础上,开始进行的,如有不明白oneinstack安装的,请移步这里(https://oneinstack.com/install/)
那么不在废话。
1.关闭已有的php-fpm (博主这里是php7)进程,并备份php-fpm进程启动...
苏 demo
8年前 (2017-04-10)
3910℃
0评论
21喜欢
环境部署到Php7 的时候,遇到一个问题,
Failed to download vdb/uri from source: The Process class relies on proc_open, which is not available on your PHP inst...
苏 demo
8年前 (2017-03-27)
2741℃
0评论
0喜欢
操作步骤
1.安装nethogs
sudo apt-get install nethogs #个别系统,尤其是低于15的,可以自行wget 远程包,进行编译安装
2.查看安装版本
sudo nethogs -V
3.查看进程流量
sudo nethogs
&nb...
苏 demo
8年前 (2017-03-21)
3250℃
0评论
0喜欢
操作步骤
1.安装samba
apt-get install samba
apt-get install smbclient
2.启动Samba服务器只需执行如下命令:
#sudo /etc/init.d/samba start
关闭Samba服务器:
#sudo /etc/in...
苏 demo
8年前 (2017-03-16)
2072℃
0评论
0喜欢
压缩和打包文件
.bz2 — 使用bzip2命令压缩的文件,可以使用bzip2 -d filename 解包
.gz — 使用gzip命令压缩的文件,可以使用gunzip -d filename 解包
.tar — 使用tar打包的文件,即tarball文件,可以使用tar xf...
苏 demo
8年前 (2017-03-16)
2016℃
0评论
0喜欢
项目配置是一个 Xunsearch 项目的核心灵魂,非常重要,通常保存为 .ini 文件
以分号开头的行表示注释,空行直接被忽略不起任何作用
中括号包围的每个分区均为字段配置,字段个数根据项目的实际需求设定
每个项目必须有并且只能有一个类型类 ID 的主键字段,ID 字段值的字母...
苏 demo
8年前 (2017-02-25)
2398℃
0评论
0喜欢