erw23312 发表于 2015-6-16 09:02:55

mongodb 安装配置实践


[*]首先从官网下载mongodb的安装包http://www.mongodb.org/downloads我的系统是redhat5.8所有选择相应的版本包就ok现在最新版是3.0.3

[*]解压mongodb-linux-x86_64-rhel55-3.0.3.tgz


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# tar zxvf mongodb-linux-x86_64-rhel55-3.0.3.tgz -C /opt/
mongodb-linux-x86_64-rhel55-3.0.3/README
mongodb-linux-x86_64-rhel55-3.0.3/THIRD-PARTY-NOTICES
mongodb-linux-x86_64-rhel55-3.0.3/GNU-AGPL-3.0
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongodump
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongorestore
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongoexport
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongoimport
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongostat
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongotop
mongodb-linux-x86_64-rhel55-3.0.3/bin/bsondump
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongofiles
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongooplog
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongoperf
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongod
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongos
mongodb-linux-x86_64-rhel55-3.0.3/bin/mongo
# ln -sv mongodb-linux-x86_64-rhel55-3.0.3/ mongodb
create symbolic link `mongodb' to `mongodb-linux-x86_64-rhel55-3.0.3/'




3.创建mongodb用户
1
# useradd mongodb




4.创建相应文件目录并修改权限
1
2
3
# mkdir /data/db -p
# chown mongodb:mongodb /data/ -R
# chown -R mongodb:mongodb /opt/*




5.添加PATH环境变量在shell下正常访问mongodb的应用工具
1
2
3
4
5
# vim /etc/profile.d/mongodb.sh
export    PATH=$PATH:/opt/mongodb/bin
# source /etc/profile.d/mongodb.sh
# echo $PATH
/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/opt/mongodb/bin




6.创建mongodb的PID存放目录
1
2
3
4
5
6
7
8
9
# mkdir /var/run/mongodb
# chown mongodb:mongodb /var/run/mongodb/ -R
# mongod --dbpath /data/db/ --logpath /var/log/mongodb.log --logappend --port 27017 --pidfilepath /var/run/mongodb/mongodb.pid --maxConns 250 --rest --httpinterface --fork
about to fork child process, waiting until server is ready for connections.
forked process: 4060
child process started successfully, parent exiting
--maxConns 250 :表示最大连接数是250个
--rest --httpinterface : web接口,指定这项28017端口才能启用
--fork :后台运行




7.安装过程中遇见的问题装好之后连接出现以下警告
1
2
3
4
5
6
(1).# mongo
MongoDB shell version: 3.0.3
connecting to: test
Server has startup warnings:
2015-06-15T20:27:49.892+0800 I CONTROL ** WARNING: You are running this process as the root user, which is not recommended.
2015-06-15T20:27:49.892+0800 I CONTROL




出现这个问题就查看关于mongodb的文件权限,主要是/opt /data/db/ /var/run/mongodb/ /var/log/mongodb.log的权限因为启动初始化时以root用户的权限在运行,所以这些目录下的权限可能会变成root root
1
2
3
4
5
6
7
8
9
10
11
12
(2).$mongod --dbpath /data/db/ --logpath /var/log/mongodb.log --logappend --port 27017 --pidfilepath /var/run/mongodb/mongodb.pid --maxConns 250 --rest --httpinterface --fork


2015-06-15T17:41:25.721+0800 I CONTROL ** WARNING: /sys/kernel/mm/transparent_hugepage/enabled is

'always'.
2015-06-15T17:41:25.721+0800 I CONTROL **      We suggest setting it to 'never'
2015-06-15T17:41:25.721+0800 I CONTROL
2015-06-15T17:41:25.721+0800 I CONTROL ** WARNING: /sys/kernel/mm/transparent_hugepage/defrag is

'always'.
2015-06-15T17:41:25.721+0800 I CONTROL **      We suggest setting it to 'never'




修改两个参数即可
1
2
echo "never" > /sys/kernel/mm/transparent_hugepage/enabled
echo "never" > /sys/kernel/mm/transparent_hugepage/defrag




8.安装成功并登录
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# ss -tanlp | grep mongod
0      0                              *:27017                         *:*      users:(("mongod",4095,6))
0      0                              *:28017                         *:*      users:(("mongod",4095,8))
# mongo
MongoDB shell version: 3.0.3
connecting to: test
> help
    db.help()                  help on db methods
    db.mycoll.help()             help on collection methods
    sh.help()                  sharding helpers
    rs.help()                  replica set helpers
    help admin                   administrative help
    help connect               connecting to a db help
    help keys                  key shortcuts
    help misc                  misc things to know
    help mr                      mapreduce

    show dbs                     show database names
    show collections             show collections in current database
    show users                   show users in current database
    show profile               show most recent system.profile entries with time >= 1ms
    show logs                  show the accessible logger names
    show log             prints out the last segment of log in memory, 'global' is default
    use <db_name>                set current database
    db.foo.find()                list objects in collection foo
    db.foo.find( { a : 1 } )   list objects in foo where a == 1
    it                           result of the last line evaluated; use to further iterate
    DBQuery.shellBatchSize = x   set default number of items to display on shell
    exit                         quit the mongo shell




登录web接口 28017端口9.关闭服务器
1
2
3
(1).# mongod --shutdown
killing process with pid: 3936
(2).# killall mongod




10.给mongodb编写配置文件/etc/mongodb.conf
1
2
3
4
5
6
7
8
# grep -v ^# /etc/mongodb.conf
logpath=/var/log/mongodb.log
logappend=true
fork = true
dbpath=/data/db
pidfilepath = /var/run/mongodb/mongodb.pid
rest = true
httpinterface = true




启动
1
2
3
4
5
6
7
# mongod -f /etc/mongodb.conf
about to fork child process, waiting until server is ready for connections.
forked process: 4169
child process started successfully, parent exiting
# ss -tanlp | grep mongod
0      0                              *:27017                         *:*      users:(("mongod",4169,6))
0      0                              *:28017                         *:*      users:(("mongod",4169,8))




11.用service mongodb * 来启动mongodb
启动脚本:/etc/rc.d/init.d/mongod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash

# mongod - Startup script for mongod

# chkconfig: 35 85 15
# description: Mongo is a scalable, document-oriented database.
# processname: mongod
# config: /etc/mongod.conf
# pidfile: /var/run/mongo/mongod.pid

. /etc/rc.d/init.d/functions

# things from mongod.conf get there by mongod reading it

CONFIGFILE="/etc/mongodb.conf"
OPTIONS=" -f $CONFIGFILE"
SYSCONFIG="/etc/sysconfig/mongod"

DBPATH=`awk -F= '/^dbpath=/{print $2}' "$CONFIGFILE"`
PIDFILE=`awk -F= '/^dbpath\s=\s/{print $2}' "$CONFIGFILE"`
mongod=${MONGOD-/opt/mongodb/bin/mongod}

MONGO_USER=mongodb
MONGO_GROUP=mongodb

if [ -f "$SYSCONFIG" ]; then
    . "$SYSCONFIG"
fi

# Handle NUMA access to CPUs (SERVER-3574)
# This verifies the existence of numactl as well as testing that the command works
NUMACTL_ARGS="--interleave=all"
if which numactl >/dev/null 2>/dev/null && numactl $NUMACTL_ARGS ls / >/dev/null 2>/dev/null
then
    NUMACTL="numactl $NUMACTL_ARGS"
else
    NUMACTL=""
fi

start()
{
echo -n $"Starting mongod: "
daemon --user "$MONGO_USER" $NUMACTL $mongod $OPTIONS
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/mongod
}

stop()
{
echo -n $"Stopping mongod: "
killproc -p "$PIDFILE" -d 300 /opt/mongodb/bin/mongod
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/mongod
}

restart () {
    stop
    start
}

ulimit -n 12000
RETVAL=0

case "$1" in
start)
    start
    ;;
stop)
    stop
    ;;
restart|reload|force-reload)
    restart
    ;;
condrestart)
    [ -f /var/lock/subsys/mongod ] && restart || :
    ;;
status)
    status $mongod
    RETVAL=$?
    ;;
*)
    echo "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
    RETVAL=1
esac

exit $RETVAL




测试启动
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# service mongod start
Starting mongod: about to fork child process, waiting until server is ready for connections.
forked process: 4426
child process started successfully, parent exiting
                                                         
# ss -tanlp | grep mongod
0      0                              *:27017                         *:*      users:(("mongod",4426,6))
0      0                              *:28017                         *:*      users:(("mongod",4426,8))                                                   
# mongo
MongoDB shell version: 3.0.3
connecting to: test
>
# service mongod start
Starting mongod: about to fork child process, waiting until server is ready for connections.
forked process: 4426
child process started successfully, parent exiting
                                                         

# service mongod stop
Stopping mongod:                                          



页: [1]
查看完整版本: mongodb 安装配置实践