title UserData @echo off set classdir = WebRoot\WEB-INF\lib;WebRoot\WEB-INF\classes; setlocal ENABLEDELAYEDEXPANSION set classpath=%classpath%;%classdir% for /R "WebRoot\WEB-INF\lib" %%i in (*.jar) do set classpath=!classpath!;%%i java com.huawei.idac.userdata.Startup setlocal DISABLEDELAYEDEXPANSION endlocal pause
登录主服务器:
$ mongodb/bin/mongo --port 28018
MongoDB shell version: 1.2.4-
url: test
connecting to: 127.0.0.1:28018/test
type "help" for help
> show dbs
admin
local
test
> use test
switched to db test
> show collections
这里主上的test数据什么表都没有,为空,查看从服 务器同样也是这样
$ mongodb/bin/mongo --port 28019
MongoDB shell version: 1.2.4-
url: test
connecting to: 127.0.0.1:28019/test
type "help" for help
> show dbs
admin
local
test
> use test
switched to db test
> show collections
那么现在我们来验证主从数据是否会像想象的那样同步 呢?
我们在主上新建表user
> db
test
>db.createCollection("user");
> show collections
system.indexes
user
>
表 user已经存在了,而且test库中还多了一个system.indexes用来存放索引的表
3、MongoDB语法与现有关系型数据库SQL语法比较
MongoDB语法 MySql语法
db.test.find({'name':'foobar'}) <==> select * from test where name='foobar'
db.test.find() <==> select * from test
db.test.find({'ID':10}).count() <==> select count(*) from test where ID=10
db.test.find().skip(10).limit(20) <==> select * from test limit 10,20
db.test.find({'ID':{$in:[25,35,45]}}) <==> select * from test where ID in (25,35,45)
db.test.find().sort({'ID':-1}) <==> select * from test order by ID desc
db.test.distinct('name',{'ID':{$lt:20}}) <==> select distinct(name) from test where ID<20
db.test.group({key:{'name':true},cond:{'name':'foo'},reduce:function(obj,prev){prev.msum+=obj.marks;},initial:{msum:0}}) <==> select name,sum(marks) from test group by name
db.test.find('this.ID<20',{name:1}) <==> select name from test where ID<20
db.test.insert({'name':'foobar','age':25})<==>insert into test ('name','age') values('foobar',25)
db.test.remove({}) <==> delete * from test
db.test.remove({'age':20}) <==> delete test where age=20
db.test.remove({'age':{$lt:20}}) <==> elete test where age<20
db.test.remove({'age':{$lte:20}}) <==> delete test where age<=20
db.test.remove({'age':{$gt:20}}) <==> delete test where age>20
db.test.remove({'age':{$gte:20}}) <==> delete test where age>=20
db.test.remove({'age':{$ne:20}}) <==> delete test where age!=20
db.test.update({'name':'foobar'},{$set:{'age':36}}) <==> update test set age=36 where name='foobar'
db.test.update({'name':'foobar'},{$inc:{'age':3}}) <==> update test set age=age+3 where
name='foobar'
电子商务商店 资料夹结构 1. client folder contains all the front-end related stuff. 2. server folder contains all the backend related stuff. 服务器端 1. cd controllers - ... 2.... 3.... SECRET = '<JWT>
相关推荐
monodb 实战
操作monodb的c#封装,调用非常方便,可以继承,功能包括: 1、所有数据库操作 2、前台表格类数据获取 public List<Document> GetList(List<string> lstColName, Document query, JqGridParam jqParam, ref int count)...
适合monoDB初学者,希望可以帮到大家
适合monoDB初学者,希望可以帮到大家
适合monoDB初学者,希望可以帮到大家
MongoDB 是一个流行的开源、分布式文档数据库系统,它属于NoSQL数据库家族,以其灵活的数据模型、高可用性和可扩展性而受到广泛欢迎。在本文中,我们将深入探讨MongoDB的最新版本,特别是针对Linux 64位系统的安装...
适合monoDB初学者,希望可以帮到大家
【标题】:“基于vue全家桶+node.js+mongodb的在线购物商城” 【描述】:这个项目是一个毕业设计,采用现代前端框架Vue.js的完整工具集(即“vue全家桶”),后端使用Node.js作为服务器环境,搭配NoSQL数据库...
在IT行业中,构建高效、可扩展的Web应用是至关重要的,而Spring MVC、MyBatis和MongoDB这三者正是实现这一目标的强大工具。本文将深入探讨这些技术及其整合方式。 首先,Spring MVC是Spring框架的一部分,是一个...
MongoDB是一款流行且功能强大的开源NoSQL数据库系统,支持多种数据模型,如文档型、图形型和键值对。在现代网络安全环境中,确保数据在传输过程中的安全性至关重要,SSL(Secure Socket Layer)或其更新版本TLS...
mongo docker 镜像
MongoDB是一个开源、分布式、高性能的NoSQL数据库,以其灵活性、可扩展性和高可用性而闻名。`mongodb.dll`是MongoDB数据库系统在Windows平台上运行所必需的一个动态链接库(DLL)文件,它包含了MongoDB客户端和...
MongoDB 是一种流行的 NoSQL 数据库,以文档型数据存储为主,支持丰富的查询表达能力。在本题中,我们将探讨 MongoDB 的查询操作,基于提供的 `user1` 和 `user2` 文档进行练习。 首先,让我们熟悉一下 `db.users....
端口开放要求包括数据库连接、MQ 连接、Monodb 访问连接、Redis 连接、Nfs 文件访问、Web 服务、FTP 访问和传输等。 安装步骤包括使用 Car-eye 安装工具完成整个项目的部署,也可以手工完成安装。部署的主要内容...
cd /usr/local/server/monodb mkdir –p data/shard11 mkdir –p data/shard21 touch data/shard11.log touch data/shard21.log ``` Server2: ``` su – mongodb cd /usr/local/server/monodb mkdir data mkdir -p ...
云计算平台Hadoop的部署
### MongoDB 常用指令详解 #### 一、启动与管理MongoDB服务 - **启动MongoDB服务**: ... - **停止MongoDB服务**: ... - `sc delete MongoDB`: 在Windows环境下删除MongoDB服务。... - 在命令行中输入`mongo`即可进入...
标题中的“pms_database_deployer”是一个项目或工具的名称,专门用于将解析的PMS(Project Management System,项目管理系统)数据库内容部署到MongoDB,一个流行的NoSQL数据库系统。这个工具很可能用JavaScript...
电子商务商店 资料夹结构 1. client folder contains all the front-end related stuff. 2. server folder contains all the backend related stuff. 服务器端 1. cd controllers - ... 2.... 3.... SECRET = '<JWT>
VEFT514-LargeAssignment2 在运行之前安装npm苏巴斯塔斯大厦您已被聘为一家名为Mansion de Subastas的艺术品销售公司的首席开发人员。 他们沉迷于NodeJS,不会接受其他任何东西作为他们的技术堆栈。...