CentOS7.xシステムインストールRedis 6.0.1

16559 ワード

文書ディレクトリ
  • 1.Redis
  • をダウンロード
  • 2.Redis
  • のインストール
  • 2.1コンパイルRedis
  • 2.2 gccバージョン
  • をアップグレード
  • 2.3make install

  • CentOS7.x Redis 6をインストールする.0.1
    1.Redisのダウンロード
    Redis最新安定版6.0.1をダウンロードし、https://redis.io/
    [solang@solang ~]$ wget http://download.redis.io/releases/redis-6.0.1.tar.gz
    

    2.Redisのインストール
    2.1 Redisのコンパイル
    [solang@solang ~]$ tar -zxf redis-6.0.1.tar.gz -C /usr/local/
    
    [solang@solang ~]$ cd /usr/local/redis-6.0.1/
    
    [solang@solang redis-6.0.1]$ make
    
    makeの実行後にエラーが発生しました
    make[3]: cc: Command not found
    make[3]: *** [net.o] Error 127
    make[3]: Leaving directory `/usr/local/redis-6.0.1/deps/hiredis'
    make[2]: *** [hiredis] Error 2
    make[2]: Leaving directory `/usr/local/redis-6.0.1/deps'
    make[1]: [persist-settings] Error 2 (ignored)
        CC adlist.o
    /bin/sh: cc: command not found
    make[1]: *** [adlist.o] Error 127
    make[1]: Leaving directory `/usr/local/redis-6.0.1/src'
    make: *** [all] Error 2
    

    Redisをコンパイルするときはgccをインストールする必要があります
    [root@solang ~]# yum -y install gcc
    

    通常のユーザーで再コンパイル
    [solang@solang redis-6.0.1]$ make
    

    次のエラーが発生しました
    server.c:5099:19: error: ‘struct redisServer’ has no member named ‘ipfd_count’
             if (server.ipfd_count > 0 || server.tlsfd_count > 0)
                       ^
    server.c:5099:44: error: ‘struct redisServer’ has no member named ‘tlsfd_count’
             if (server.ipfd_count > 0 || server.tlsfd_count > 0)
                                                ^
    server.c:5101:19: error: ‘struct redisServer’ has no member named ‘sofd’
             if (server.sofd > 0)
                       ^
    server.c:5102:94: error: ‘struct redisServer’ has no member named ‘unixsocket’
                 serverLog(LL_NOTICE,"The server is now ready to accept connections at %s", server.unixsocket);
                                                                                                  ^
    server.c:5103:19: error: ‘struct redisServer’ has no member named ‘supervised_mode’
             if (server.supervised_mode == SUPERVISED_SYSTEMD) {
                       ^
    server.c:5104:24: error: ‘struct redisServer’ has no member named ‘masterhost’
                 if (!server.masterhost) {
                            ^
    server.c:5117:15: error: ‘struct redisServer’ has no member named ‘maxmemory’
         if (server.maxmemory > 0 && server.maxmemory < 1024*1024) {
                   ^
    server.c:5117:39: error: ‘struct redisServer’ has no member named ‘maxmemory’
         if (server.maxmemory > 0 && server.maxmemory < 1024*1024) {
                                           ^
    server.c:5118:176: error: ‘struct redisServer’ has no member named ‘maxmemory’
             serverLog(LL_WARNING,"WARNING: You specified a maxmemory value that is less than 1MB (current value is %llu bytes). Are you sure this is what you really want?", server.maxmemory);
                                                                                                                                                                                    ^
    server.c: In function ‘hasActiveChildProcess’:
    server.c:1476:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    server.c: In function ‘allPersistenceDisabled’:
    server.c:1482:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    server.c: In function ‘writeCommandsDeniedByDiskError’:
    server.c:3747:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    server.c: In function ‘iAmMaster’:
    server.c:4914:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    make[1]: *** [server.o] Error 1
    make[1]: Leaving directory `/usr/local/redis-6.0.1/src'
    make: *** [all] Error 2
    

    リリースgccが5.3以上であるかどうかを確認します.CentOS 7のデフォルトインストールは4.8.5です.
    [solang@solang redis-6.0.1]$ gcc -v
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
    Target: x86_64-redhat-linux
    Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
    Thread model: posix
    gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC)
    
    #      ,                    
    make distclean
    

    2.2 gccバージョンのアップグレード
    アップグレードgccから5.3以上、アップグレードgcc 9
    [root@solang ~]# yum -y install centos-release-scl
    [root@solang ~]# yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils
    
    [root@solang ~]# scl enable devtoolset-9 bash
    
    [root@solang ~]# gcc -v
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-9/root/usr/libexec/gcc/x86_64-redhat-linux/9/lto-wrapper
    Target: x86_64-redhat-linux
    Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-9/root/usr --mandir=/opt/rh/devtoolset-9/root/usr/share/man --infodir=/opt/rh/devtoolset-9/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-9.1.1-20190605/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
    Thread model: posix
    gcc version 9.1.1 20190605 (Red Hat 9.1.1-2) (GCC)
    
    sclコマンドの有効化は一時的なものであり、shellを終了するか、shellを再開すると、元のシステムgccバージョンが復元されます.
    次のコマンドを実行すると、gcc 9が永続的に使用されます./opt/rh/devtoolset-9/は、sclコマンドが有効になった後のgcc -vCOLLECT_LTO_WRAPPERパスプレフィックスです.
    [root@solang ~]# echo "source /opt/rh/devtoolset-9/enable" >> /etc/profile
    

    注意:このコマンドを実行すると、他のshellウィンドウが閉じて再開く必要があります.
    shellウィンドウを再開し、一般ユーザーで再コンパイル
    [solang@solang redis-6.0.1]$ make
    
    Hint: It's a good idea to run 'make test' ;)
    
    make[1]: Leaving directory `/usr/local/redis-6.0.1/src'
    

    今回のコンパイルは成功した.
    以下のエラーが発生した場合は、make MALLOC=libcを使用してコンパイルします.
    zmalloc.h:50:31: fatal error: jemalloc/jemalloc.h: No such file or directory
     #include 
                                   ^
    compilation terminated.
    make[1]: *** [adlist.o] Error 1
    make[1]: Leaving directory `/usr/local/redis-6.0.1/src'
    make: *** [all] Error 2
    

    2.3make install make installコマンドは、redisルートディレクトリで実行されます.このコマンドは、redis/srcのスクリプトの一部を/usr/local/bin/ディレクトリにコピーします./usr/local/bin/ディレクトリはpath環境変数で構成されているため、このコマンドを実行する目的は、どのディレクトリでもredisの停止を直接開始することです.
    [solang@solang redis-6.0.1]$ make install
    cd src && make install
    make[1]: Entering directory `/usr/local/redis-6.0.1/src'
        CC Makefile.dep
    make[1]: Leaving directory `/usr/local/redis-6.0.1/src'
    make[1]: Entering directory `/usr/local/redis-6.0.1/src'
    
    Hint: It's a good idea to run 'make test' ;)
    
        INSTALL install
        INSTALL install
        INSTALL install
        INSTALL install
        INSTALL install
    make[1]: Leaving directory `/usr/local/redis-6.0.1/src'
    

    参考:Centos 7.6 redis 6をインストールする.0.1 LinuxでRedis 3をインストール.0.0