• 软件安装01 Linux下redis安装


    Redis 源码安装

    安装

    # 上传源码包
    	$ scp -P 22 redis-6.2.5.tar.gz root@xx.xx.xx.xx:/opt/
    	$ tar -zxvf redis-6.2.5.tar.gz 
    	
    # 编译(进入到/opt/redis/目录下执行make)
    	$ make
    	
    # 安装到/usr/local/redis 目录下
    	make PREFIX=/usr/local/redis install
    # 配置环境变量
    	$ vim /etc/profile
    		export REDIS_HOME=/usr/local/redis
    		export PATH=$PATH:$REDIS_HOME/bin
    	$ source /etc/profile			$ echo $PATH
    	
    # 进入/opt/redis-6.2.5/utils/ 执行	 
    	$ ./install_server.sh (默认选择)	
    

    远程连接

    # 测试
    	redis-cli -h xx.xx.xx.xx  -p  6379
    # 编辑redis配置文件
    	vi /etc/redis/6379.conf
    	bind 127.0.0.1 注释掉
    	开启保护模式:protected-mode yes
    # 关闭 & 启动 & 测试
    	redis-cli shutdown
    	redis-server /etc/redis/6379.conf 
    	redis-cli -h xx.xx.xx.xx  -p  6379
    

    redis 设置密码

    # /etc/redis/redis.conf
    $ requirepass 123456	
    
    # redis-cli连接redis
    $ redis-cli
    127.0.0.1:6379> auth 123456
    OK
    # 密码设置参考: https://blog.csdn.net/qq_25135655/article/details/99188058
    
    通过知识/经验的分享,节省开发者的时间.
  • 相关阅读:
    mysql资料
    MySQL启动与关闭
    poj 2778 DNA Sequence
    poj 1625 Censored!
    zoj 3228 Searching the String
    hdu 4605 Magic Ball Game
    hdu 4610 Cards
    SGU 439 A Secret Book
    NOI2013
    NOI2014
  • 原文地址:https://www.cnblogs.com/ysloong/p/15570761.html
Copyright © 2020-2023  润新知