MongoDB 安装配置,服务的启动与关闭,数据库安全用户密码配置

MongoDB基础(一)

一、MongoDB在Linux环境下的安装

​ 进入MongoDB数据库的[官网]:https://www.mongodb.com/找到社区版Mongo服务的Linux系统下的安装包,由于我使用的是CentOS 7,所以下载的是RedHat版本的MongoDB 3.6.5(不同版本可能会有些小差异)

资源包下载地址:https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.6.5.tgz

wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.6.5.tgz

对文件进行解压缩和解归档。

[tianjun@localhost ~]$ tar -zxvf mongodb-linux-x86_64-rhel70-3.6.5.tgz 
mongodb-linux-x86_64-rhel70-3.6.5/README
mongodb-linux-x86_64-rhel70-3.6.5/THIRD-PARTY-NOTICES
mongodb-linux-x86_64-rhel70-3.6.5/MPL-2
mongodb-linux-x86_64-rhel70-3.6.5/GNU-AGPL-3.0
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongodump
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongorestore
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongoexport
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongoimport
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongostat
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongotop
mongodb-linux-x86_64-rhel70-3.6.5/bin/bsondump
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongofiles
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongoreplay
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongoperf
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongod
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongos
mongodb-linux-x86_64-rhel70-3.6.5/bin/mongo
mongodb-linux-x86_64-rhel70-3.6.5/bin/install_compass

接下来将解压出来的放在自己喜欢的目录下

[root@localhost ~]# mv /home/tianjun/mongodb-linux-x86_64-rhel70-3.6.5 /usr/local/mongodb

二、MongoDB的简单配置

我们要启动mongo的服务需要启动mongod。先编写配置文件。

[tianjun@localhost ~]$ mkdir mongoConfig
[tianjun@localhost ~]$ cd mongoConfig
[tianjun@localhost mongoConfig]$ mkdir -p data/db
[tianjun@localhost mongoConfig]$ touch mongod.conf
[tianjun@localhost mongoConfig]$ vim mongod.conf

mongod.conf

systemLog:  # 系统日志
  destination: file  # 以文件形式存储
  path: "./mongod.log"  # 文件路径和名称
  logAppend: true  # 日志添加
storage:  # 存储
  dbPath: "./data/db"  # 数据存储的地方
  journal:
    enabled: true
processManagement:
  fork: true  # 后台运行
net:
  bindIp: 127.0.0.1  # 绑定IP地址,如果需要外部访问,绑定外部地址
  port: 2333  # 端口
setParameter:
  enableLocalhostAuthBypass: false  # 本地登录不需要密码

设置环境变量

[tianjun@localhost ~]$ vim .bash_profile  # 编写当前用户的环境
[tianjun@localhost ~]$ source .bash_profile  # 加载环境变量

三、启动和关闭mongod服务

启动

[tianjun@localhost mongoConfig]$ mongod -f mongod.conf 
about to fork child process, waiting until server is ready for connections.
forked process: 5956
child process started successfully, parent exiting

关闭

[root@VM_186_206_centos mongoConfig]# mongod -f mongod.conf --shutdown
killing process with pid: 5956

四、数据库安全配置

进入mongo客户端,输入一下面内容设置全局超级用户

use admin
db.createUser(
  {
    user: "myUserAdmin",
    pwd: "abc123",
    roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
  }
)

详细的roles规则请查看mongo官方文档

重新启动服务

[tianjun@localhost mongoConfig]$ mongod -f mongod.conf --auth
about to fork child process, waiting until server is ready for connections.
forked process: 21334
child process started successfully, parent exiting
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值