ls0398 发表于 2018-11-3 10:39:40

Redis源码安装

  安装Redis
  yum install tcl -y
  下载redis-4.0.1.tar.gz
  wget http://download.redis.io/releases/redis-4.0.1.tar.gz
  tar xzf redis-4.0.1.tar.gz -C /usr/local/
  cd /usr/local/redis-4.0.1
  make MALLOC=libc
  make test
  make install
  初始化启动Redis ,指定端口、配置文件、日志文件、redis-server ,一般默认即可。
  /usr/local/redis-4.0.1/utils/install_server.sh
  Welcome to the redis service installer
  This script will help you easily set up a running redis server
  Please select the redis port for this instance:
  Selecting default: 6379
  Please select the redis config file name
  Selected default - /etc/redis/6379.conf
  Please select the redis log file name
  Selected default - /var/log/redis_6379.log
  Please select the data directory for this instance
  Selected default - /var/lib/redis/6379
  Please select the redis executable path
  Selected config:
  Port         : 6379
  Config file    : /etc/redis/6379.conf
  Log file       : /var/log/redis_6379.log
  Data dir       : /var/lib/redis/6379
  Executable   : /usr/local/bin/redis-server
  Cli Executable : /usr/local/bin/redis-cli
  Is this ok? Then press ENTER to go on or Ctrl-C to abort.
  Copied /tmp/6379.conf => /etc/init.d/redis_6379
  Installing service...
  Successfully added to chkconfig!
  Successfully added to runlevels 345!
  Starting Redis server...
  Installation successful!
  修改Redis端口和密码
  vim/etc/redis/6379.conf
  #后台运行
  daemonize yes
  #端口
  port 6379
  #密码
  requirepass password
  redis-cli
  -h ,默认是127.0.0.1
  -p ,默认是6379
  -a ,如果redis加锁,需要传递密码
  Redis 连接
  redis-cli -h 127.0.0.1 -p 6379 -a password
  开启远程访问,在redis3.2之后,redis增加了protected-mode,在这个模式下,即使注释掉了bind 127.0.0.1,
  #bind 127.0.0.1

页: [1]
查看完整版本: Redis源码安装