0

問題なくインストールした後、2コアと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

ところで、どのOSを使用していますか?

于 2015-03-04T10:49:30.257 に答える