zoukankan      html  css  js  c++  java
  • 安装mongodb

    一。安装

        1.    下载编译好的二进制

    [root@VM_14_49_centos mongodb_01]# wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-3.6.0.tgz
    --2017-12-17 11:24:01--  https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-3.6.0.tgz
    Resolving fastdl.mongodb.org... 52.222.211.118, 52.222.211.146, 52.222.211.226, ...

        2.   解压缩

    [root@VM_14_49_centos mongodb_01]# ls
    mongodb-linux-x86_64-rhel62-3.6.0.tgz
    [root@VM_14_49_centos mongodb_01]# tar -xvf mongodb-linux-x86_64-rhel62-3.6.0.tgz 
    mongodb-linux-x86_64-rhel62-3.6.0/README
    mongodb-linux-x86_64-rhel62-3.6.0/THIRD-PARTY-NOTICES
    mongodb-linux-x86_64-rhel62-3.6.0/MPL-2
    mongodb-linux-x86_64-rhel62-3.6.0/GNU-AGPL-3.0

        3.   配置环境

    [root@VM_14_49_centos mongodb_01]# ls
    mongodb-linux-x86_64-rhel62-3.6.0  mongodb-linux-x86_64-rhel62-3.6.0.tgz
    [root@VM_14_49_centos mongodb_01]# cd mongodb-linux-x86_64-rhel62-3.6.0
    [root@VM_14_49_centos mongodb-linux-x86_64-rhel62-3.6.0]# ls
    bin  GNU-AGPL-3.0  MPL-2  README  THIRD-PARTY-NOTICES
    [root@VM_14_49_centos mongodb-linux-x86_64-rhel62-3.6.0]# $PATH
    -bash: /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin: No such file or directory
    [root@VM_14_49_centos mongodb-linux-x86_64-rhel62-3.6.0]# cp ./bin/* /usr/local/bin
    [root@VM_14_49_centos mongodb-linux-x86_64-rhel62-3.6.0]# 

         4.   查看权限

    [root@VM_14_49_centos mongodb-linux-x86_64-rhel62-3.6.0]# ls -ahl /usr/local/bin
    total 278M
    drwxr-xr-x.  2 root root 4.0K Dec 17 11:40 .
    drwxr-xr-x. 13 root root 4.0K Dec  3 10:58 ..
    -rwxr-xr-x   1 root root  10M Dec 17 11:40 bsondump
    -rwxr-xr-x   1 root root 5.2K Dec 17 11:40 install_compass
    -rwxr-xr-x   1 root root  33M Dec 17 11:40 mongo
    -rwxr-xr-x   1 root root  57M Dec 17 11:40 mongod
    -rwxr-xr-x   1 root root  13M Dec 17 11:40 mongodump
    -rwxr-xr-x   1 root root  11M Dec 17 11:40 mongoexport
    -rwxr-xr-x   1 root root  11M Dec 17 11:40 mongofiles
    -rwxr-xr-x   1 root root  11M Dec 17 11:40 mongoimport
    -rwxr-xr-x   1 root root  56M Dec 17 11:40 mongoperf
    -rwxr-xr-x   1 root root  14M Dec 17 11:40 mongoreplay
    -rwxr-xr-x   1 root root  14M Dec 17 11:40 mongorestore
    -rwxr-xr-x   1 root root  33M Dec 17 11:40 mongos
    -rwxr-xr-x   1 root root  11M Dec 17 11:40 mongostat
    -rwxr-xr-x   1 root root  11M Dec 17 11:40 mongotop
    [root@VM_14_49_centos mongodb-linux-x86_64-rhel62-3.6.0]# 

          5.   配置conf文件

    [root@VM_14_49_centos ~]# mkdir DB
    [root@VM_14_49_centos ~]# cd DB/
    [root@VM_14_49_centos DB]# mkdir mongodb
    [root@VM_14_49_centos DB]# cd mongodb/
    [root@VM_14_49_centos mongodb]# mkdir conf
    [root@VM_14_49_centos mongodb]# mkdir data
    [root@VM_14_49_centos mongodb]# mkdir log
    [root@VM_14_49_centos mongodb]# vim conf/mongod.conf
    [root@VM_14_49_centos mongodb]# cat conf/mongod.conf 
    port = 12345
    dbpath = /root/DB/mongodb/data
    logpath = /root/DB/mongodb/log/mongod.log
    fork = true
    logappend = true
    bind_ip = 127.0.0.1
    
    [root@VM_14_49_centos mongodb]# 

        6.  启动mongodb

    [root@VM_14_49_centos mongodb]# mongod -f conf/mongod.conf 
    about to fork child process, waiting until server is ready for connections.
    forked process: 27999
    child process started successfully, parent exiting
    [root@VM_14_49_centos mongodb]# 

         7.  登录

    [root@VM_14_49_centos mongodb]# mongo 127.0.0.1:12345/myTest
    MongoDB shell version v3.6.0
    connecting to: mongodb://127.0.0.1:12345/myTest
    MongoDB server version: 3.6.0
    Welcome to the MongoDB shell.

         8.  查看数据库

    > show dbs
    admin  0.000GB
    local  0.000GB
    > 
  • 相关阅读:
    Attach Files to Objects 将文件附加到对象
    Provide Several View Variants for End-Users 为最终用户提供多个视图变体
    Audit Object Changes 审核对象更改
    Toggle the WinForms Ribbon Interface 切换 WinForms 功能区界面
    Change Style of Navigation Items 更改导航项的样式
    Apply Grouping to List View Data 将分组应用于列表视图数据
    Choose the WinForms UI Type 选择 WinForms UI 类型
    Filter List Views 筛选器列表视图
    Make a List View Editable 使列表视图可编辑
    Add a Preview to a List View将预览添加到列表视图
  • 原文地址:https://www.cnblogs.com/GH-123/p/8051679.html
Copyright © 2011-2022 走看看