Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MongoDB automatic startup script

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

After installing mongodb, always start as follows, specify dbpath,logpath, verify auth, etc.

. / mongod-- dbpath=/usr/bin/mongodb/mongodb/data-- logpath=/usr/bin/mongodb/mongodb/log/mongodb.log-- auth

But I find it more and more troublesome to write more parameters, and it is easy to make mistakes, because I decided to enable an automatic script for mongodb.

Write parameters to the configuration file

Vim / usr/bin/mongodb/init.d/mongodb.confport=27017 # Port dbpath=E:/MongoDB/MongoDB/db # Database Storage path logpath=E:/MongoDB/MongoDB/log/mongodb.log # Log Storage path logappend=true auth=true # enable Authentication

At this point, after using the configuration file, the startup mode is easy, as follows

. / mongod-- location of the config=/usr/bin/mongodb/init.d/mongodb.conf # conf configuration file

2. Shell script, self-starting mongodb

Vim / usr/bin/mongodb/mongodb/bin/mongod usr/bin/mongodb/mongodb/bin/mongodb.conf stop stop () {/ usr/bin/mongodb/mongodb/bin/mongod-f / usr/bin/mongodb/mongodb/bin/mongodb.conf-- shutdown echo "MongoDB is stopped."} case "$1" in start) start ; stop) stop;; restart) stop start;; *) echo $"Usage: $0 {start | stop | restart}" exit 1esac

As above, the self-startup script is completed

Mongodb start

/ usr/bin/mongodb/init.d/mongodb start

Mongodb shuts down

/ usr/bin/mongodb/init.d/mongodb stop

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report