Aerospike service start failed . Execute command “asd --cold-start --config-file /etc/aerospike/aerospike.conf --fgdaemon” ,it report critical info “1024 system file descriptors not enough, config specified 15000”
It is the proto-fd-max
in the service
context which is 15000 (the default).
If this is for local development purposes, you could add proto-fd-max 1000
to your aerospike.conf
’s service
context. Otherwise, you need to increase your ulimit -n
: see Increase Maximum number of openfiles.