T his post is about creating a namespace in Aerospike.       I could not find any concrete method to create a namespace like create database  in MySQL and MongoDB. So I am suggesting a way to create a namespace in Aerospike Database.    Step-1: Locate config file aerospike.conf and open it in your favorite editor and make sure you have permission to modify the file. In my system the path of file /etc/aerospike/aerospike.conf (Default in Ubuntu). Here the content of the file.   # Aerospike database configuration file.  service {  user root  group root  paxos-single-replica-limit 1 # Number of nodes where the replica  pidfile /var/run/aerospike/asd.pid  service-threads 4  transaction-queues 4  transaction-threads-per-queue 4  proto-fd-max 15000 }  logging {  # Log file must be an absolute path.  file /var/log/aerospike/aerospike.log {   context any info  } }  net...