官方提供了腳本建立集羣的工具,咱們參照官方的指導進行建立集羣以我本測試環境爲例:html
/usr/local/soft/redis-cluster/redis-3.2.1/utils/create-clusternode
進入腳本目錄後執行集羣建立失敗,以下:redis
[root@bogon create-cluster]# ./create-cluster create ../../src/redis-trib.rb:24:in `require': no such file to load -- rubygems (LoadError) from ../../src/redis-trib.rb:24
經過查找官方文檔說明,ruby
The redis-trib
utility is in the src
directory of the Redis source code distribution. You need to install redis
gem to be able to run redis-trib
.(....須要經過安裝redis gem來運行redis-trib)bash
gem install redis
系統沒有安裝gem,先安裝gem。工具
1)yum install ruby測試
2)安裝rubygemsui
ruby setup.rb --help
安裝提示ruby版本需大於1.8.7,則須要手動安裝ruby。從【ruby源】下載安裝包後解壓進行安裝。spa
[root@bogon create-cluster]# gem install redis ERROR: Loading command: install (LoadError) cannot load such file -- zlib ERROR: While executing gem ... (NoMethodError) undefined method `invoke_with_build_args' for nil:NilClass
進入ruby安裝目錄/usr/local/soft/ruby/ruby-2.1.7/ext/zlib,手動編譯安裝zlib。.net
[root@bogon create-cluster]# gem install redis ERROR: While executing gem ... (Gem::Exception) Unable to require openssl, install OpenSSL and rebuild ruby (preferred) or use non-HTTPS sources
yum install openssl-devel
yum install openssl
進入ruby安裝目錄/usr/local/soft/ruby/ruby-2.1.7/ext/openssl,手動編譯安裝openssl
上述安裝成功後,從新執行gem install redis
[root@bogon openssl]# gem install redis Fetching: redis-3.3.1.gem (100%) Successfully installed redis-3.3.1 Parsing documentation for redis-3.3.1 Installing ri documentation for redis-3.3.1 Done installing documentation for redis after 1 seconds 1 gem installed
進入腳本建立集羣的目錄/usr/local/soft/redis-cluster/redis-3.2.1/utils/create-cluster啓動節點後建立集羣。
1)啓動6個節點
[root@bogon create-cluster]# ./create-cluster start Starting 20001 Starting 20002 Starting 20003 Starting 20004 Starting 20005 Starting 20006
2)建立集羣,3主3從
[root@bogon create-cluster]# ./create-cluster create >>> Creating cluster >>> Performing hash slots allocation on 6 nodes... Using 3 masters: 127.0.0.1:20001 127.0.0.1:20002 127.0.0.1:20003 Adding replica 127.0.0.1:20004 to 127.0.0.1:20001 Adding replica 127.0.0.1:20005 to 127.0.0.1:20002 Adding replica 127.0.0.1:20006 to 127.0.0.1:20003 M: d3bef4dff6260735c0ff12b8add62636c2bc7e4f 127.0.0.1:20001 slots:0-5460 (5461 slots) master M: 351691e42b2207cf0322dbf4904c9b9fc6e6d18a 127.0.0.1:20002 slots:5461-10922 (5462 slots) master M: 54f86341f254d453f5e9221ecc6ab1623fdc7ed2 127.0.0.1:20003 slots:10923-16383 (5461 slots) master S: cbf8299efc5ef5422d3f160f54d7f7fb5452d613 127.0.0.1:20004 replicates d3bef4dff6260735c0ff12b8add62636c2bc7e4f S: 43a8538ace038e638ecc98c162bedfe4ed43798c 127.0.0.1:20005 replicates 351691e42b2207cf0322dbf4904c9b9fc6e6d18a S: 83df222815c36c773c2494486a03ffcd3367210a 127.0.0.1:20006 replicates 54f86341f254d453f5e9221ecc6ab1623fdc7ed2 Can I set the above configuration? (type 'yes' to accept): yes >>> Nodes configuration updated >>> Assign a different config epoch to each node >>> Sending CLUSTER MEET messages to join the cluster Waiting for the cluster to join. >>> Performing Cluster Check (using node 127.0.0.1:20001) M: d3bef4dff6260735c0ff12b8add62636c2bc7e4f 127.0.0.1:20001 slots:0-5460 (5461 slots) master M: 351691e42b2207cf0322dbf4904c9b9fc6e6d18a 127.0.0.1:20002 slots:5461-10922 (5462 slots) master M: 54f86341f254d453f5e9221ecc6ab1623fdc7ed2 127.0.0.1:20003 slots:10923-16383 (5461 slots) master M: cbf8299efc5ef5422d3f160f54d7f7fb5452d613 127.0.0.1:20004 slots: (0 slots) master replicates d3bef4dff6260735c0ff12b8add62636c2bc7e4f M: 43a8538ace038e638ecc98c162bedfe4ed43798c 127.0.0.1:20005 slots: (0 slots) master replicates 351691e42b2207cf0322dbf4904c9b9fc6e6d18a M: 83df222815c36c773c2494486a03ffcd3367210a 127.0.0.1:20006 slots: (0 slots) master replicates 54f86341f254d453f5e9221ecc6ab1623fdc7ed2 [OK] All nodes agree about slots configuration. >>> Check for open slots... >>> Check slots coverage... [OK] All 16384 slots covered.
參考資料:
https://rubygems.org/pages/download/
https://ruby.taobao.org/
http://www.runoob.com/ruby/ruby-installation-unix.html
http://stackoverflow.com/questions/9727908/cannot-load-such-file-zlib-even-after-using-rvm-pkg-install-zlib
http://blog.csdn.net/kenera/article/details/25962587