aerospike(1)-centos7安裝aerospike


要安裝的軟件:server和tools

 

下載地址:https://www.aerospike.com/download/server/4.5.1.5/

 

server

1、下載

wget https://www.aerospike.com/artifacts/aerospike-server-community/4.5.1.5/aerospike-server-community-4.5.1.5-el7.tgz

2、升級openssl

yum update openssl

3、解壓&安裝

tar -zxvf aerospike-server-community-4.5.1.5-el7.tgz

cd aerospike-server-community-4.5.1.5-el7/
sh asinstall

4、啟動

systemctl start aerospike

5、查看狀態

[root@zuoys aerospike-server-community-4.5.1.5-el7]# systemctl status aerospike

[root@zuoys aerospike-server-community-4.5.1.5-el7]# asinfo -v STATUS
OK

 其他命令

#重啟
systemctl restart aerospike
#停止
systemctl stop aerospike

查看日志

journalctl -u aerospike -a -o cat -f

 

卸載

#查看服務名
[root@cent7-zuoys aerospike]# rpm -qa |grep -i aerospike
aerospike-server-community-4.5.1.5-1.el6.x86_64
#卸載
[root@cent7-zuoys aerospike]# yum remove aerospike-server-community-4.5.1.5-1.el6.x86_64

 

 

tools

下載

wget https://www.aerospike.com/artifacts/aerospike-tools/3.18.1/aerospike-tools-3.18.1-el7.tgz

解壓

[root@zuoys aerospike]# tar -zxvf aerospike-tools-3.18.1-el7.tgz 

 

[root@zuoys aerospike]# cd aerospike-tools-3.18.1-el7/
#安裝
[root@zuoys aerospike-tools-3.18.1-el7]# sh asinstall

驗證

[root@zuoys aerospike-tools-3.18.1-el7]# yum list installed | grep aerospike-tools
aerospike-tools.x86_64                  3.18.1-1.el7                   installed

asadm

[root@zuoys aerospike-tools-3.18.1-el7]# asadm
Seed:        [('127.0.0.1', 3000, None)]
Config_file: /root/.aerospike/astools.conf, /etc/aerospike/astools.conf
Aerospike Interactive Shell, version 0.2.0

Found 1 nodes
Online:  192.168.241.129:3000
Admin>

 

aql

[root@zuoys aerospike-tools-3.18.1-el7]# aql
Seed:         127.0.0.1
User:         None
Config File:  /etc/aerospike/astools.conf /root/.aerospike/astools.conf 
Aerospike Query Client
Version 3.18.1
C Client Version 4.5.0
Copyright 2012-2017 Aerospike. All rights reserved.
aql> 

asinfo

[root@zuoys aerospike-tools-3.18.1-el7]# asinfo -v edition
Aerospike Community Edition

asbackup

[root@zuoys aerospike-tools-3.18.1-el7]# asbackup -n test -o ~/output
2019-03-16 13:19:18 GMT [INF] [ 4719] Starting 100% backup of 127.0.0.1 (namespace: test, set: [all], bins: [all], after: [none], before: [none]) to /root/output
2019-03-16 13:19:18 GMT [INF] [ 4719] [src/main/aerospike/as_cluster.c:129][as_cluster_add_nodes_copy] Add node BB94E0E61290C00 127.0.0.1:3000
2019-03-16 13:19:18 GMT [INF] [ 4719] Processing 1 node(s)
2019-03-16 13:19:18 GMT [INF] [ 4719] Node ID             Objects        Replication    
2019-03-16 13:19:18 GMT [INF] [ 4719] BB94E0E61290C00     0              1              
2019-03-16 13:19:18 GMT [INF] [ 4719] Namespace contains 0 record(s)
2019-03-16 13:19:18 GMT [INF] [ 4719] Created new backup file /root/output
2019-03-16 13:19:18 GMT [INF] [ 4738] Starting backup for node BB94E0E61290C00
2019-03-16 13:19:18 GMT [INF] [ 4738] No secondary indexes
2019-03-16 13:19:18 GMT [INF] [ 4738] Backing up 0 UDF file(s)
2019-03-16 13:19:18 GMT [INF] [ 4738] Completed backup for node BB94E0E61290C00, records: 0, size: 42 (~0 B/rec)
2019-03-16 13:19:19 GMT [INF] [ 4737] Backed up 0 record(s), 0 secondary index(es), 0 UDF file(s) from 1 node(s), 42 byte(s) in total (~0 B/rec)

 

AMC

 

#下載社區版
[root@cent7-zuoys aerospike]# wget https://www.aerospike.com/artifacts/aerospike-amc-community/4.0.22/aerospike-amc-community-4.0.22-1.x86_64.rpm
#安裝
[root@cent7-zuoys aerospike]# rpm -ivh aerospike-amc-community-4.0.22-1.x86_64.rpm 
#
[root@cent7-zuoys aerospike]# cp /etc/amc/amc.conf /etc/amc/amc.conf.bac

 

啟動&停止&重啟

#啟動
/etc/init.d/amc start
#停止
/etc/init.d/amc stop
#重啟
/etc/init.d/amc restart
#查看狀態
/etc/init.d/amc status

#查看日志
/var/log/amc/error.log

查看

http://192.168.163.131:8081

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM