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)

猜你喜欢

转载自www.cnblogs.com/yaoyuan2/p/10540700.html