Step 1. Download Aerospike Database Server rpm packages
You can download here.
Step 2. Untar file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ tar -xzf citrusleaf-community-server-2.6.0-el6.tgz |
Step 3. Install the Aerospike Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo rpm -i citrusleaf-community-tools-2.6.0-1.el6.x86_64.rpm | |
$ sudo rpm -i citrusleaf-community-server-2.6.0-1.el6.x86_64.rpm |
Step 4. Run the Aerospike Server for Testing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo /etc/init.d/citrusleaf start | |
[sudo] password for me: | |
Starting citrusleaf: [ OK ] | |
$ sudo /etc/init.d/citrusleaf status | |
cld は停止しています |
Oops! I got a error message. It means "CLD is stopped!". Let me see the log.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Apr 11 2013 02:58:17 GMT: WARNING (cf:misc): (id.c:163) can't get physical address, tried eth, bond, wlan. fatal: 19 No such device | |
Apr 11 2013 02:58:17 GMT: CRITICAL GLOBAL (config): (base/cfg.c:687) could not get unique id and/or ip address | |
critical error: backtrace: frame 0 /usr/bin/cld() [0x46d3ff] | |
critical error: backtrace: frame 1 /usr/bin/cld() [0x406f2f] | |
critical error: backtrace: frame 2 /usr/bin/cld() [0x403b8f] | |
critical error: backtrace: frame 3 /lib64/libc.so.6(__libc_start_main+0xfd) [0x3212a1ecdd] | |
critical error: backtrace: frame 4 /usr/bin/cld() [0x4036a9] |
Aha! Aerospike can't get ip address by eth, bond, wlan. Wait! my network interface name is "bond0.2032". If they use regular expression, it would be solved. But I can't fix it, so I changed my configuration file - /etc/citrusleaf/citrusleaf.conf - as blow. I just added network-interface-name item.
......
network {
service {
address any
port 3000
reuse-address
network-interface-name bond0.2032
......
I ran it again and got succeeded.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo /etc/init.d/citrusleaf status | |
cld (pid 19246) を実行中... | |
[bae_joongjin@atlas-proxy01 ~]$ sudo grep cake /var/log/citrusleaf.log | |
Apr 11 2013 04:18:24 GMT: INFO (as): (base/as.c:527) service ready: soon there will be cake! |
Step 5. Verify Installation
I used the Aerospike command line interface tool to verity installation. It is installed as /opt/citrusleaf/bin/cli and lined in /usr/bin/cli. So you can use it normally.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cli -h 127.0.0.1 -n test -o set -k Aerospike -b name -v "Aerospike, Inc." | |
succeeded: key = Aerospike set= bin= name value= Aerospike, Inc. | |
$ cli -h 127.0.0.1 -n test -o set -k Aerospike -b address -v "Mountain View, CA 94043" | |
succeeded: key = Aerospike set= bin= address value= Mountain View, CA 94043 | |
$ cli -h 127.0.0.1 -n test -o set -k Aerospike -b email -v "info@aerospike.com" | |
succeeded: key = Aerospike set= bin= email value= info@aerospike.com | |
$ cli -h 127.0.0.1 -n test -o get -k Aerospike | |
{'email': 'info@aerospike.com', 'name': 'Aerospike, Inc.', 'address': 'Mountain View, CA 94043'} |
It's simple, right?
No comments:
Post a Comment