Mongodb笔记之(Linux Centos 7 Mongodb安装和账户创建)
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1、下载Mongodb安装包
版本选择不是越高越好,建议选择小版本好为偶数的版本。
命令:
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.2.tgz
2、解压到/usr/local/
cd /usr/local
tar -zxvf mongodb-linux-x86_64-3.0.2.tgz3、常见Mongodb常用目录mkmkmv mongodb-linux-x86_64-3.0.2 mongodb
mkdir data
mkdir logs
touch mongodb.conf
4、配置启动配置文件
vim mongodb.conf
port=10001
logappend=true
fork=true
dbpath=/usr/local/mongodb/data
logpath=/usr/local/mongodb/log
:wq!
./bin/mongod -auth -f mongodb.conf
5、客户端测试
./bin/mongo 182.92.243.11:10001 MongoDB shell version: 3.0.2 connecting to: 182.92.243.11:10001/test use admin db.auth("root","root")
6、创建数据库和数据库账户
db.createUser({user:'ssh',pwd:'123456',roles:[{role:'dbOwner',db:'mytest'}]})
7、查看账户是否可用
use mytest db.auth("ssh","123456");
Mongodb数据库可用,安全账户可用
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)