一、基本环境:
mongdb3.0.5数据库
spring-data-mongodb-1.7.2.jar
mongo-java-driver-3.0.2.jar
linux-redhat6.3
tomcat7
二、搭建mongodb副本集:
1、 分别在三台linux系统机上安装mongodb,(为避免和机器上原有的mongodb端口冲突,这里设为57017):
192.168.0.160
192.168.0.211(192.168.0.33上的虚拟机)
192.168.0.213(192.168.0.4上的虚拟机)
安装步骤见安装文档,注意先不要更改用户验证方式。
2、 以副本集的方式启动三个mongodb,只是在单机mongodb启动的基础上加入副本集参数—replSet,例如启动160的:
/home/admin/mongodb3051/mongodb305/bin/mongod –f/home/admin/mongo3051/conf/mongodb.conf –replSet reptest
其中,reptest是指定的副本集名称,另外两台机也也要和这个一样。如:
/mongodb3051/mongodb305/bin/mongod –f/mongodb3051/conf/mongodb.conf –replSet repTest
3、 在任意一台机上配置副本集,这里在160上配置:
(1)、进入160上的mongodb sehll:
/home/admin/mongodb3051/mongodb305/bin/mongo–port 57017
(2)、切换到admin数据库:
use admin
(3)、配置副本集:
config={_id:”reptest”,members:[{_id:0,host:”192.168.0.160:57017”},{_id:1,host:”192.168.0.211:57017”},{_id:,host:”192.168.0.213:57017”}]}
(4)、加载副本集配置文件:
rs.initiate(config)
(5)、查看副本集状态:
rs.status()
正常情况下可以看到160会是主服务器,显示PRIMARY,如果是,就直接进行以下操作,如果不是,就切换到PRIMARY上进行以下操作;
(6)、增加用户:
db.createUser({“user”:”admin”,”pwd”:”admin”,”roles”:[“root”]})
(7)、更改用户验证方式:
varschema=db.system.version.findOne({“_id”:”authSchema”})
schema.currentVersion=3
db.system.version.save(schema)
(8)、删除用户:
db.dropUser(“admin”)
(9)、重新建立用户(系统中和上边建立的用户验证方式不一样):
db.createUser({“user”:”admin”,”pwd”:”admin”,”roles”:[“root”]})
(10)、关闭三个mongodb:
(11)、在160的数据库的data目录中建立keyFile文件:
cd/home/admin/mongodb3051/data
openssl rand –base64753 > keyFile
(12)、给keyFile文件设置600权限(必须设置600权限):
chmod 600keyFile
(13)、把这个keyFile文件上传到另外两台机上mongodb的data目录中:
scp –r keyFile [email protected]/mongodb3051/data
scp –r keyFile [email protected]/mongodb3051/data
(14)、在mongodb.conf文件中加入keyFile,例如160:
keyFile=/home/admin/mongodb3051/data/keyFile
(15)、重新启动mongodb,使用replSet和auth参数:
(16)、在priority中设置副本集成员的优先级,给160设置最高优先级,优先级默认都是1:
config=rs.conf()
config.members[0].priority=2
rs.reconfig(config)
这样的话,只要160的mongodb是开着的,那么主服务器就会是160
三、Spring中连接副本集的配置:
<?xml version="1.0"encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p"
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/data/mongo
http://www.springframework.org/schema/data/mongo/spring-mongo.xsd">
<!-- Factory bean that creates the Mongoinstance -->
<mongo:mongo-client replica-set="192.168.91.27:27017" credentials="admin:admin@admin" id="mongo">
<mongo:client-options write-concern="SAFE" connections-per-host="100"
threads-allowed-to-block-for-connection-multiplier="50"
/>
</mongo:mongo-client>
<mongo:db-factory id="mongoDbFactory"dbname="admin" mongo-ref="mongo"/>
<bean id="mongoTemplate"class="org.springframework.data.mongodb.core.MongoTemplate">
<constructor-arg name="mongoDbFactory" ref="mongoDbFactory" />
</bean>
</beans>
四、java中连接副本集的代码:
public DB getMongoDB() {
if (mongoDB == null) {
try {
ServerAddress sa = new ServerAddress("192.168.0.160", 57017);
ServerAddress sa1 = new ServerAddress("192.168.0.211", 57017);
ServerAddress sa2 = new ServerAddress("192.168.0.213", 57017);
List<ServerAddress> sends = new ArrayList<ServerAddress>();
sends.add(sa);
sends.add(sa1);
sends.add(sa2);
List<MongoCredential> mongoCredentialList = new ArrayList<MongoCredential>();
mongoCredentialList.add(MongoCredential.createMongoCRCredential("admin", "admin","admin".toCharArray()));
mongoDB = new MongoClient(sends,mongoCredentialList).getDB("admin");
} catch (Exception e) {
throw new RuntimeException("连接MongoDB数据库错误", e);
}
}
return mongoDB;
}