UCloud 云服务器 centOS6 64位 安装mongodb 数据库
文章目录
mongodb 在centOS 64位服务器上安装
UCloud 云服务器
CentOS 系统
64 位
Step 1 设置mongodb源
vim /etc/yum.repos.d/mongodb.repo
copy 下面内容
[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1
保存上面内容并退出
Step 2 安装mongodb
yum install mongo-10gen mongo-10gen-server
Step 3 配置mongodb
mongodb 安装后,配置文件在 /etc/mongod.conf
logpath= //指定日志所在目录
logappend=true //使用追加的方式写日志
fork=true //在后台守护进程方式
dbpath= //指定数据库所在目录
port=10000 //指定端口号
bind_ip=127.0.0.1 //绑定ip,指定 127.0.0.1 后,公网环境下无法连接到 mongodb
保存配置文件.
Step 4 启动mongodb
sudo mongod -f /etc/mongod.conf
about to fork child process, waiting until server is ready for connections.
forked process: 2415
child process started successfully, parent exiting
```<p style="color:white;">出自:<a style="color:white;" href="http://yijiebuyi.com/blog/58cc4c3e2fb748dbcc57a30db9668776.html" >UCloud 云服务器 centOS6 64位 安装mongodb 数据库</a></p>