SSL证书生成CSR文件+去除私钥密码保护
SSL / 2018年3月27日

生成CSR和KEY文件的过程很简单。 创建命令,在机器上执行,如果没有这个命令安装opensll即可。 openssl req -nodes -newkey rsa:2048 -keyout server.key -out server.csr   CSR信息: country name:CN state or province name:HK locality name:HK orga...

Ubuntu 16.04 升级 PHP 版本至最新 7.*
Ubuntu / 2018年3月27日

$ sudo add-apt-repository ppa:ondrej/php $ sudo apt-get update $ sudo apt-get upgrade php $php  -v PHP 7.1.15-1+ubuntu16.04.1+deb.sury.org+2 (cli) (built: Mar 6 2018 11:10:13) ( NTS ) Copyright (...

Laravel 5.5 官方推荐 Nginx 配置
PHP / 2018年3月26日

Laravel 5.5 版本官方放出了 Nginx 服务器的配置,中文文档:服务器配置 Nginx server { listen 80; server_name example.com; root /example.com/public;add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=bl...

Redis 主从切换的集群管理之redis-sentinel
Redis / 2018年3月13日

当我们使用 Redis 做缓存策略。刚开始的时候,redis是一个单点,此时如果redis机器岩机,redis的 服务就完全停止,这时就会影响其站点的正常运行。 下面利用自带的一个集群管理工具  redis sentinel 做一个主从切换的集群管理,下面介绍我的做法。 这里我准备了三台机器  VirtualBOX 的虚拟机 Systen  : Centos 6 IP...

Redis 之主从复制
Redis / 2018年3月13日

Redis 的主从非常简单  就一句   ################################# REPLICATION ################################# # Master-Slave replication. Use slaveof to make a Redis instance a copy of # another Redi...

redis 之配置详解
Redis / 2018年3月13日

配置文件参数说明:  1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程     daemonize no 2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定     pidfile /var/run/r...

Redis 多实例脚本
Redis / 2018年3月13日

#!/usr/bin/env bash # # redis start up the redis server daemon # # chkconfig: name  on # description: redis service  in  /shell/redis # Usage : ./Redis {start|stop|restart|kill|connect} port # process...

redis 自启动脚本
Redis / 2018年3月13日

# vi /etc/sysctl.conf vm.overcommit_memory = 1 然后应用生效: # sysctl –p 建立redis启动脚本:   # vim /etc/init.d/redis #!/bin/bash # # Init file for redis # # chkconfig: - 80 12 # description: redis daemon # ...

Redis 编译安装
Redis / 2018年3月13日

Redis的安装 官网:http://redis.io 步骤一: 下载安装包: cd /usr/local/src wget  http://download.redis.io/releases/redis-3.0.7.tar.gz 步骤二: 编译源代码: tar zxf redis-3.0.7.tar.gz cd redis-3.0.7 mv redis-3.0.7 redis mak...