生成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...
$ 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 服务器的配置,中文文档:服务器配置 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是一个单点,此时如果redis机器岩机,redis的 服务就完全停止,这时就会影响其站点的正常运行。 下面利用自带的一个集群管理工具 redis sentinel 做一个主从切换的集群管理,下面介绍我的做法。 这里我准备了三台机器 VirtualBOX 的虚拟机 Systen : Centos 6 IP...
Redis 的主从非常简单 就一句 ################################# REPLICATION ################################# # Master-Slave replication. Use slaveof to make a Redis instance a copy of # another Redi...
配置文件参数说明: 1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程 daemonize no 2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定 pidfile /var/run/r...
#!/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...
# 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的安装 官网: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...