zoukankan      html  css  js  c++  java
  • redis在linux的安装和开机启动(二)

    编译 安装

    makefile已经存在

    执行make 即可

    make之后, 自动创建可运行的脚本文件, 不需要再执行 install. 将脚本文件, 拷贝到指定位置, 就可以了.

    手动创建目录, 需要三个目录:

     

    make生成好的脚本, 拷贝到所创建的目录中:

    拷贝, 运行运行脚本 和 配置文件

    结果, 运行服务器端 /bin/redis-server

     开机运行,后台运行(守护进程运行)

    对redis.conf 更改

     bin/redis-server   etc/redis.conf 开启守护进程

    增加开机运行脚本

    /etc/rc.local增加启动脚本

    redis/bin目录加入PATH环境变量

    vi /etc/profile

     source /etc/profile


    备注,如果erc/rc.local没有启动

    如果下方命令没有输出结果

    #systemctl list-dependencies multi-user.target | grep rc-local

    执行下方命令

    #chmod +x /etc/rc.d/rc.local
    #systemctl daemon-reload

    再次执行命令

    #systemctl list-dependencies multi-user.target | grep rc-local

     

    输出结果

    ● ├─rc-local.service
     
     
  • 相关阅读:
    pickle模块的基本使用
    python selenium 开发环境配置
    ubuntu ftp服务器搭建
    再探VIM配置
    counting elements--codility
    Time complexity--codility
    Arrays--codility
    Iterations --codility
    adobe reader DC 字体设置
    按位操作
  • 原文地址:https://www.cnblogs.com/matengfei123/p/7729916.html
Copyright © 2011-2022 走看看