xingyu655 发表于 2018-5-10 11:39:31

学习日志

  在配置好Yum的基础上安装gcc
  如下
# yum install gcc  安装好后,redhat上拷贝tar文件,
# cd redis-2.8.19
# ls
00-RELEASENOTESCONTRIBUTINGdeps   Makefile   README      runtest         sentinel.conftests
BUGS             COPYING       INSTALLMANIFESTOredis.confruntest-sentinelsrc            utils  在文件下运行make install,具体可通过readme去查看
  在安装好之后:
# cd utils
# ls
build-static-symbols.tclhyperloglog      mkrelease.sh   redis_init_script      redis-sha1.rb         whatisdoing.sh
generate-command-help.rbinstall_server.shredis-copy.rbredis_init_script.tplspeed-regression.tcl  在utils中,运行install_server.sh
  这里去配置redis的一些东西,如下:
# ./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-cli可以登陆
页: [1]
查看完整版本: 学习日志