0

安装后没有任何问题,我在具有 2cores 和 4gb ram 的 openvz vps 上开始了 aerospike。这是结果:

root@outland:~# /etc/init.d/aerospike start
 * Start aerospike:  asd  [OK]

然后检查正在运行的 asd:

root@outland:~# /etc/init.d/aerospike status
 * Halt aerospike:  asd                                                  [fail]

出了什么问题?

添加日志:

Mar 03 2015 15:17:57 GMT: INFO (config): (cfg.c::3033) system file descriptor limit: 100000, proto-fd-max: 15000

Mar 03 2015 15:17:57 GMT: WARNING (cf:misc): (id.c::249) Tried eth,bond,wlan and list of all available interfaces on device.Failed to retrieve physical address with errno 19 No such device


Mar 03 2015 15:17:57 GMT: CRITICAL (config): (cfg.c:3363) could not get unique id and/or ip address

Mar 03 2015 15:17:57 GMT: WARNING (as): (signal.c::120) SIGINT received, shutting down

Mar 03 2015 15:17:57 GMT: WARNING (as): (signal.c::123) startup was not complete, exiting immediately
4

1 回答 1

3

这是你的配置问题

Mar 03 2015 15:17:57 GMT: WARNING (cf:misc): (id.c::249) Tried eth,bond,wlan and list of all available interfaces on device.Failed to retrieve physical address with errno 19 No such device

Mar 03 2015 15:17:57 GMT: CRITICAL (config): (cfg.c:3363) could not get unique id and/or ip address

基本上 vps 有一个非标准的接口名称。

解决方案是将您的接口名称添加network-interface-name到配置中。

http://www.aerospike.com/docs/operations/troubleshoot/startup/#problem-with-network-interface

顺便说一句,您使用的是哪个操作系统?

于 2015-03-04T10:49:30.257 回答