如果您正在运行基于 deb 的 linux 发行版, 请使用apt的包管理器从官方存储库中安装 percona 软件。 编译安装依赖项(不确定的情况下) apt-get install -y git scons gcc g++ openssl check cmake bison libboost-all-dev libasio-dev libaio-dev libncurses5-dev libr...
安装 Docker docker pull wnameless/oracle-xe-11g 下载镜像 docker pull wnameless/oracle-xe-11g Using default tag: latest latest: Pulling from wnameless/oracle-xe-11g a48c500ed24e: Pull complete 1e1de00ff7e1: ...
配置yum源 追加CentOS 6.5的epel及remi源。 # rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm 以下是Cen...
DISTINCT关键字经常在MySQL中使用,在mysql5.7以前的版本中一般没有什么问题,但是在5.7以后的版本中会遇到这样的错误 Caused by: java.sql.SQLException: Expression #1 of ORDER BY clause is not in SELECT list, references column ‘game.giftbag0_.create_d...
当我们使用 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...