1):下载 mongodb 包
[root@admin tools]# wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.6.tgz
2):解压到指定目录
[root@admin tools]# tar -zxvf mongodb-linux-x86_64-3.0.6.tgz -C ../mongodb/
3):配置系统文件profile
[root@admin bin]# vim /etc/profile 添加以下信息
export MONGODB_HOME=/opt/mongodb/mongodb-linux-x86_64-3.0.6
export PATH=$PATH:$MONGODB_HOME/bin [root@admin bin]# source /etc/profile
4):创建用于存放数据和日志文件的文件夹,并修改其权限增加读写权限
[root@admin mongodb]# cd /opt/mongodb/ [root@admin mongodb]# mkdir -p data/db [root@admin mongodb]# chmod -R 777 data
[root@admin mongodb]# mkdir logs
[root@admin mongodb]# cd logs/
[root@admin logs]# touch mongodb.log
[root@admin mongodb]# chmod -R 777 logs
5):mongodb启动配置
进入到bin目录,增加一个配置文件:
[root@admin mongodb]# cd /opt/mongodb/mongodb-linux-x86_64-3.0.6/bin/ [root@admin bin]# vim mongodb.conf 添加以下信息:
dbpath = /opt/mongodb/data/db #数据文件存放目录
logpath = /opt/mongodb/logs/mongodb.log #日志文件存放目录
port = 27017 #端口
fork = true #以守护程序的方式启用,即在后台运行
nohttpinterface = true
6):启动mongod数据库服务,以配置文件的方式启动
cd /opt/mongodb/mongodb-linux-x86_64-3.0.6/bin ./mongod -f mongodb.conf
7):连接mongodb数据库
./mongo
8):设置mongodb.service启动服务,设置开机启动
cd /lib/systemd/system
vim mongodb.service
[Unit]
Description=mongodb
After=network.target remote-fs.target nss-lookup.target [Service]
Type=forking
ExecStart=/opt/mongodb/mongodb-linux-x86_64-3.0.6/bin/mongod --config /opt/mongodb/mongodb-linux-x86_64-3.0.6/bin/mongodb.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/opt/mongodb/mongodb-linux-x86_64-3.0.6/bin/mongod --shutdown --config /opt/mongodb/mongodb-linux-x86_64-3.0.6/bin/mongodb.conf
PrivateTmp=true [Install]
WantedBy=multi-user.target
9):设置mongodb.service权限
chmod 754 mongodb.service
10):系统mongodb.service的操作命令如下
#启动服务
systemctl start mongodb.service
#关闭服务
systemctl stop mongodb.service
#开机启动
systemctl enable mongodb.service
#重启
systemctl daemon-reload
11):mongodb.service启动测试
[root@admin system]# systemctl start mongodb.service
[root@admin system]# cd /opt/mongodb/mongodb-linux-x86_64-3.0.6/bin/
[root@admin bin]# ./mongo
=======安装过程中遇到的问题========
1):安装过程中遇到的问题
mongod: error while loading shared libraries: libnetsnmpmibs.so.30: cannot open shared object file: No such file or directory
这个报错信息是说找不到对应的库文件,原因是一开始我下错了安装包版本,所以在下载是一定要注意自己系统的版本
2):通过配置文件启动服务:mongod -f /etc/mongodb.conf 时报错
Error parsing INI config file: unrecognised option 'nohttpinterface' try './
这个一开始让我查了好久,后面查到是因为我下载的最新版本的mongodb,而最新的版本貌似不支持以这种配置文件的方式来启动服务,所以无奈我又重新下载安装了3.2.12的版本,然后再次启动服务就正常了。
3): 启动服务时报错:
about to fork child process, waiting until server is ready for connections.
forked process: 11335
ERROR: child process failed, exited with error number 1
这个错误原因是dbpath文件的权限问题,data和logs目录增加写权限即可,上面提到了。