MongoDB installation in Centos1 min read
MongoDB is a free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemas. MongoDB is developed by MongoDB Inc., and is published under a combination of the GNU Affero General Public License and the Apache License.
Installation
Add the repository
vi /etc/yum.repos.d/mongodb-org-3.6.repo
[mongodb-org-3.6]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/amazon/2013.03/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
Intstall mongoDB package using yum.
sudo yum install -y mongodb-org
Start the service
service mongod start
Enable the service to start at boot.
chkconfig mongod on
He is a Technical professional. He is a person who loves to share tricks and tips on the Internet. He Posts what he does!