千家信息网

学习日志---redhat安装redis

发表于:2024-10-27 作者:千家信息网编辑
千家信息网最后更新 2024年10月27日,在配置好Yum的基础上安装gcc如下[root@hadoop1 ~]# yum install gcc安装好后,redhat上拷贝tar文件,[root@hadoop1 software]# cd r
千家信息网最后更新 2024年10月27日学习日志---redhat安装redis

在配置好Yum的基础上安装gcc

如下

[root@hadoop1 ~]# yum install gcc

安装好后,redhat上拷贝tar文件,

[root@hadoop1 software]# cd redis-2.8.19[root@hadoop1 redis-2.8.19]# ls00-RELEASENOTES  CONTRIBUTING  deps     Makefile   README      runtest           sentinel.conf  testsBUGS             COPYING       INSTALL  MANIFESTO  redis.conf  runtest-sentinel  src            utils

在文件下运行make install,具体可通过readme去查看

在安装好之后:

[root@hadoop1 redis-2.8.19]# cd utils[root@hadoop1 utils]# lsbuild-static-symbols.tcl  hyperloglog        mkrelease.sh   redis_init_script      redis-sha1.rb         whatisdoing.shgenerate-command-help.rb  install_server.sh  redis-copy.rb  redis_init_script.tpl  speed-regression.tcl

在utils中,运行install_server.sh

这里去配置redis的一些东西,如下:

[root@hadoop1 utils]# ./install_server.sh Welcome to the redis service installerThis script will help you easily set up a running redis serverPlease select the redis port for this instance: [6379] Selecting default: 6379Please select the redis config file name [/etc/redis/6379.conf] Selected default - /etc/redis/6379.confPlease select the redis log file name [/var/log/redis_6379.log] Selected default - /var/log/redis_6379.logPlease select the data directory for this instance [/var/lib/redis/6379] Selected default - /var/lib/redis/6379Please select the redis executable path [/usr/local/bin/redis-server] Selected config:Port           : 6379Config file    : /etc/redis/6379.confLog file       : /var/log/redis_6379.logData dir       : /var/lib/redis/6379Executable     : /usr/local/bin/redis-serverCli Executable : /usr/local/bin/redis-cliIs this ok? Then press ENTER to go on or Ctrl-C to abort.Copied /tmp/6379.conf => /etc/init.d/redis_6379Installing service...Successfully added to chkconfig!Successfully added to runlevels 345!Starting Redis server...Installation successful!

大功告成

通过redis-cli可以登陆

0