aerospike安装

2024-01-21 07:48
文章标签 安装 aerospike

本文主要是介绍aerospike安装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


aerospike安装(编译版安装)

0,安装环境

机器ip:10.0.0.9,10.0.0.8
https://github.com/aerospike/aerospike-server
https://github.com/aerospike/aerospike-client-c
https://github.com/aerospike/aerospike-client-java


1:下载源文件

wget  http://www.aerospike.com/artifacts/aerospike-server-community/3.5.15/aerospike-server-community-3.5.15.tar.gz
wget  http://www.aerospike.com/artifacts/aerospike-server-community/3.6.2/aerospike-server-community-3.6.2.tar.gz



2:tar -zxvf aerospike-server-community-3.5.15.tar.gz && cd aerospike-server
tar -zxvf aerospike-server-community-3.6.2.tar.gz && cd aerospike-server


3:查看初始化选项 并且初始化,初始化之后会多几个目录

./bin/aerospike init --help

[ root@mobiead-06  bin]# ls

aerospike  asd

[ root@mobiead-06  bin]# ./aerospike init 

[ root@mobiead-06  bin]# ls

aerospike  asd  bin  etc  share  var


./bin/aerospike         -管理脚本

./bin/asd               -asd服务

./etc/aerospike.conf    -实例的配置文件

./share/                -包含一些实例的只读文件

./var/                  -asd产生的一些日志和数据


4:安装Install Aerospike Tools


wget -O aerospike-tools.tgz ' http://www.aerospike.com/artifacts/aerospike-server-community/3.5.15/aerospike-server-community-3.5.15-el6.tgz '
wget -O aerospike-tools.tgz ' http://www.aerospike.com/artifacts/aerospike-server-community/3.6.2/aerospike-server-community-3.6.2-el6.tgz '


tar -zxvf aerospike-tools.tgz


cd aerospike-server-community-3.5.15-el6/


[ root@mobiead-06  aerospike-server-community-3.5.15-el6]# ll

total 6460

-rw-r--r--. 1 zhangzicheng games 3528976 Jul 29 19:28 aerospike-server-community-3.5.15-1.el6.x86_64.rpm

-rw-r--r--. 1 zhangzicheng games 3059712 May 28 03:33 aerospike-tools-3.5.11-1.el6.x86_64.rpm

drwxr-xr-x. 3 zhangzicheng games    4096 Aug 25 13:29 aerospike-tools-deps

-rwxr-xr-x. 1 zhangzicheng games    1332 Jul 29 19:31 asinstall

-rw-r--r--. 1 zhangzicheng games    8241 Jul 29 19:31 LICENSE

-rw-r--r--. 1 zhangzicheng games     993 Jul 29 19:31 SHA256SUMS



[ root@mobiead-06  aerospike-server-community-3.5.15-el6]# rpm -Uvh aerospike-tools-3.5.11-1.el6.x86_64.rpm 

Preparing...                ########################################### [100%]

Installing /opt/aerospike

Adding group aerospike

Adding user aerospike

   1:aerospike-tools        ########################################### [100%]

Writing /usr/lib64/python2.6/site-packages/aerospike.pth

Adding python path /opt/aerospike/lib/python



5:运行Aerospike

[ root@localhost  bin]# ./aerospike start

error: start failed due to an error.

Jun 03 2015 03:11:29 GMT: CRITICAL (config): (cfg.c:1628) couldn‘t open configuration file /etc/aerospike/aerospike.conf: No such file or directory

Jun 03 2015 03:11:29 GMT: WARNING (as): (signal.c::134) SIGINT received, shutting down

Jun 03 2015 03:11:29 GMT: WARNING (as): (signal.c::137) startup was not complete, exiting immediately



[ root@localhost  bin]# mkdir -p /etc/aerospike/

[ root@localhost  bin]# cp ./etc/aerospike.conf /etc/aerospike/aerospike.conf

[ root@localhost  bin]# ./aerospike start

info: started



查看日志文件:

[ root@localhost  bin]# ls

aerospike  asd  bin  etc  share  var

[ root@localhost  bin]# cat ./var/log/aerospike.log 



[ root@localhost  bin]# ./aerospike status

info: process running





aerospike安装(源文件安装)

安装依赖环境:autoconf`, `automake`, and `libtool


OpenSSL

Lua 5.1

`lua`, `lua-devel`, and `lua-static`

---------------------------

yum install gcc

yum install autoconf libtool

yum install openssl-devel openssl-static

yum install lua-devel lua-static lua


下载源代码编译:

git clone  https://github.com/aerospike/aerospike-server.git

git pull

git submodule update --init

make

make init

make start

make stop


git clone  https://github.com/aerospike/aerospike-admin.git

make

make install


git clone  https://github.com/aerospike/aerospike-client-c.git


https://github.com/aerospike/aerospike-elk.git

https://github.com/aerospike/aerospike-hadoop.git

这篇关于aerospike安装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/628832

相关文章

Win安装MySQL8全过程

《Win安装MySQL8全过程》:本文主要介绍Win安装MySQL8全过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Win安装mysql81、下载MySQL2、解压文件3、新建文件夹data,用于保存数据库数据文件4、在mysql根目录下新建文件my.ini

最详细安装 PostgreSQL方法及常见问题解决

《最详细安装PostgreSQL方法及常见问题解决》:本文主要介绍最详细安装PostgreSQL方法及常见问题解决,介绍了在Windows系统上安装PostgreSQL及Linux系统上安装Po... 目录一、在 Windows 系统上安装 PostgreSQL1. 下载 PostgreSQL 安装包2.

Maven如何手动安装依赖到本地仓库

《Maven如何手动安装依赖到本地仓库》:本文主要介绍Maven如何手动安装依赖到本地仓库问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、下载依赖二、安装 JAR 文件到本地仓库三、验证安装四、在项目中使用该依赖1、注意事项2、额外提示总结一、下载依赖登

如何在Mac上安装并配置JDK环境变量详细步骤

《如何在Mac上安装并配置JDK环境变量详细步骤》:本文主要介绍如何在Mac上安装并配置JDK环境变量详细步骤,包括下载JDK、安装JDK、配置环境变量、验证JDK配置以及可选地设置PowerSh... 目录步骤 1:下载JDK步骤 2:安装JDK步骤 3:配置环境变量1. 编辑~/.zshrc(对于zsh

如何在pycharm安装torch包

《如何在pycharm安装torch包》:本文主要介绍如何在pycharm安装torch包方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录在pycharm安装torch包适http://www.chinasem.cn配于我电脑的指令为适用的torch包为总结在p

在PyCharm中安装PyTorch、torchvision和OpenCV详解

《在PyCharm中安装PyTorch、torchvision和OpenCV详解》:本文主要介绍在PyCharm中安装PyTorch、torchvision和OpenCV方式,具有很好的参考价值,... 目录PyCharm安装PyTorch、torchvision和OpenCV安装python安装PyTor

Python Transformer 库安装配置及使用方法

《PythonTransformer库安装配置及使用方法》HuggingFaceTransformers是自然语言处理(NLP)领域最流行的开源库之一,支持基于Transformer架构的预训练模... 目录python 中的 Transformer 库及使用方法一、库的概述二、安装与配置三、基础使用:Pi

如何解决mmcv无法安装或安装之后报错问题

《如何解决mmcv无法安装或安装之后报错问题》:本文主要介绍如何解决mmcv无法安装或安装之后报错问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录mmcv无法安装或安装之后报错问题1.当我们运行YOwww.chinasem.cnLO时遇到2.找到下图所示这里3.

Python 安装和配置flask, flask_cors的图文教程

《Python安装和配置flask,flask_cors的图文教程》:本文主要介绍Python安装和配置flask,flask_cors的图文教程,本文通过图文并茂的形式给大家介绍的非常详细,... 目录一.python安装:二,配置环境变量,三:检查Python安装和环境变量,四:安装flask和flas

Win11安装PostgreSQL数据库的两种方式详细步骤

《Win11安装PostgreSQL数据库的两种方式详细步骤》PostgreSQL是备受业界青睐的关系型数据库,尤其是在地理空间和移动领域,:本文主要介绍Win11安装PostgreSQL数据库的... 目录一、exe文件安装 (推荐)下载安装包1. 选择操作系统2. 跳转到EDB(PostgreSQL 的