问题标签 [mongodb-atlas]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - 将 laravel jensegers 连接到 mongodb atlas 集群
我从 Mongodb atlas 开始,我试图将我的 laravel/jenssegers 项目连接到我配置我的 conf/database 的集群
还有我的 .env 文件
我得到这个错误
找不到合适的服务器(
serverSelectionTryOnce
设置):[连接关闭调用 ismaster on 'xxxx-shard-00-00-uggj0.mongodb.net:27017'
我与 Mongodb Compass 冷连接没有问题。
我的 Atlas Ip 白名单已打开 (0.0.0.0/0)。
我错过了什么吗?
mongodb - pymongo 3.4.0 连接到 mongo atlas
我有 python 2.7,有 pymongo 3.4
我正在尝试使用以下方法连接到 mongo atlas:
它不断失败,身份验证失败。代码 18
mapreduce - 未处理的拒绝 MongoError: CMD_NOT_ALLOWED: mapreduce
我正在尝试在免费的Mongodb-atlas-cloud计划中使用 mapReduce 方法,但出现此错误
注意:我可以写和读没有任何问题
javascript - 远程访问 mongodb 数据并在网页上呈现结果?
我想远程托管mongodb数据库并通过查询访问数据库并在网页上显示结果。我知道可以使用mongodb atlas来托管它,为了查询数据库crest是一个可以使用的API .但是请帮助我,是否可以满足我想要达到的要求?如果是,那么如何进行。谢谢。
mongodb - Cant import data into mongo database using mongoimport
I can't import data into my existing database located on mongoDBAtlas. I installed and connected robomongo with mongoDBAtlas for working with atlas.
I created new database jasper and collection User in robomongo then I created user.json file in my project where are stored my data.
I followed tutorial on https://docs.atlas.mongodb.com/import/mongoimport/ - how to use mongoimport with mongodb.
Here is my command, Im typing in terminal:
that give me an error:
If I run mongoimport for localhost it works perfectly.
Where should be the problem ?
php - MongoDB Atlas SSL 连接由对等方重置
我在 Symfony 3 应用程序中使用 MongoDB Atlas 云服务,我的 PHP 日志中有很多警告说MongoClient::__construct(): SSL: Connection reset by peer
。即使我有时会收到警告,但我可以成功连接并读取/写入服务器。
我使用 Doctrine ODMMongoClient
用于连接到服务器。我已经replicaSet
根据 MongoDB Atlas 配置进行了配置。
当我查看 MongoDB 日志时,我没有看到任何似乎与我的问题相关的奇怪事情。
这是我的连接字符串:mongodb://<USERNAME>:<PASSWORD>@datalake-shard-00-00-lnres.mongodb.net:27017,datalake-shard-00-01-lnres.mongodb.net:27017,datalake-shard-00-02-lnres.mongodb.net:27017/test?ssl=true&replicaSet=DataLake-shard-0&authSource=admin
这是我的 Doctrine ODM 配置
mongodb - Mongodb Atlas 警报:查询目标:已扫描对象/返回已超过 1000
聚合查询:
索引:
我有上面的聚合查询,它适用于小型数据集,但我有超过 1000 万个大小超过 2GB 的文档。我正在使用 mongo atlas M10 实例。我从 mongo atlas 得到这个警报。此外,shell 只是继续等待查询结果,但从未给出任何响应。
mongodb - mongoimport 不适用于 mongodb 地图集
对于 mongoDB ATLAS 集群,我是 mongoimport 中的一个问题,但找不到任何解决方案。
我正在按照以下步骤操作:
1.我在mongodb atlas中创建了免费账号
2.然后我创建了一个集群
3.然后我添加了IP白名单
4. 然后我使用普通的命令提示符(不是 mongo shell)
5. 然后我使用命令 cd 并转到 C:\mongodb\bin
6.下一步我从“通过Mongo Shell连接”复制代码(mongo“mongodb://cluster0-shard-00-00-..........)
7. 我现在连接到集群(Cluster0-shard-0:PRIMARY>)
8. 下一步我使用 mongoimport 命令:
mongoimport --host cluster0-shard-00-00-xxxx.mongodb.net:27017 --db starwarsdb --type json --file ~c:\Users\xxxx\Downloads\starwars.json --jsonArray --authenticationDatabase admin --ssl --用户名 --密码
9. 我收到以下错误:
2017-10-22T16:05:48.994-0400 E QUERY [thread1] SyntaxError: missing ; 声明之前@(shell):1:14
在此处输入图像描述
我无法找出解决方案。您的帮助将不胜感激。
meteor - 将meteorjs应用程序连接到出现错误的atlas mongodb找不到有效的服务器
MONGO_URL
我正在尝试将我的 Meteor 应用程序连接到 Atlas MongoDB ,我正在设置MONGO_OPLOG_URL
如下:
MONGO_URL="mongodb://username:password@host:27017,host:27017,host:27017/databasename?ssl=true&replicaSet=melee-shard-0&authSource=admin"
MONGO_OPLOG_URL="mongodb://username:password@host:27017,host:27017,host:27017/local?ssl=true&replicaSet=melee-shard-0&authSource=admin"
但是,启动 Meteor 应用程序时出现错误:
错误:在初始种子列表中找不到任何有效服务器
我究竟做错了什么?