Aerospike (3000-3005)
101
Aerospike is a fast, NoSQL key-value store used in real-time apps—think session storage, user profiles, ad tech, etc. You might encounter it in environments that value speed over complexity, often with large-scale deployments.
3000
TCP
Client access (main DB port)
3001
TCP
Internal fabric (cluster communication)
3002
TCP
Heartbeat (node monitoring)
3003
TCP
Info (optional; monitoring/statistics)
3004-3005
TCP
TLS equivalents of above (if enabled)
Namespace
Database
Top-level data container. Configured with storage engine, replication, TTL, etc.
Set
Table
Logical grouping of records within a namespace; a table without enforced schema.
Record
Row
A single data entry identified by a key.
Bin
Column
Key-value pair inside a record.
Manual Probe
Usage
To interact the aql
(Aerospike Query Language) utility can be used:
Once connected, basic commands look like:
Versions
< 5.1.0.3
Vulnerable to CVE-2020-13151 with a PoC available.
Last updated
Was this helpful?