robo 3t连接_使用robo 3t studio 3t连接到地图集

robo 3t连接

Robo 3T (formerly Robomongo) is a graphical application to connect to MongoDB. The newest version now includes support for TLS/SSL and SNI which is required to connect to Atlas M0 free tier clusters.

Robo 3T(以前称为Robomongo )是用于连接MongoDB的图形应用程序。 现在,最新版本包括对TLS / SSLSNI的支持,这是连接到Atlas M0免费层群集所必需的。

先决条件 (Prerequisites)

  • The latest version of Robo 3T (I’m using Studio 3T)

    最新版本的Robo 3T(我正在使用Studio 3T)
  • Whitelist your public ip address in Atlas, or disable the whitelist by adding 0.0.0.0/0 to your whitelist (Cluster > Security > IP Whitelist)

    在Atlas中将您的公共IP地址列入白名单,或者通过将0.0.0.0/0添加到白名单来禁用白名单(“ 群集”>“安全性”>“ IP白名单” )

  • No network restrictions that block you from using TCP port 27017 to your cluster

    没有网络限制阻止您使用TCP端口27017到群集

Once you have installed the latest version, open the application and create your first Atlas profile.

安装最新版本后,打开应用程序并创建第一个Atlas配置文件。

Image for post
Main Page
主页

There are 4 tabs/sections for which you need to fill in the details.

您需要填写4个标签/部分的详细信息。

第一步 (First Step)

Image for post
Server Tab/Connection Tab
服务器选项卡/连接选项卡
  • Change the Connection Type from Direct Connection to Replica Set

    连接 类型从直接连接更改为副本集

  • For the section Members, ( To find the members, go to your Atlas browser page, click on “Cluster0” link, then you will see three links in the region subpane. Click the first one to reveal a page whose title is the first entry for member) select the pre-defined localhost entry (by double-clicking on it) and change it to reflect your first cluster member.

    对于“ 成员 ”部分,((要查找成员,请转到Atlas浏览器页面,单击“ Cluster0”链接,然后您将在区域子窗格中看到三个链接。单击第一个以显示标题为第一项的页面) (对于成员)选择预定义的localhost条目(通过双击该条目)并进行更改以反映您的第一个集群成员。

    (Change from

    (从

    localhost:27017 to your matching cluster0-shard-00–00-xxxxx.mongodb.net:27017)

    本地主机:27017到您匹配的群集0-shard-00–00-xxxxx.mongodb.net:27017)

Image for post
  • Use the (+) button to add another member. Double click it and change it to your next member.

    使用( + )按钮添加另一个成员。 双击它,并将其更改为您的下一个成员。

    (Change from the entry it added to your matching

    (将其添加到您匹配的条目中进行更改

    cluster0-shard-00–01-xxxxx.mongodb.net:27017)

    cluster0-shard-00–01-xxxxx.mongodb.net:27017 )

  • Use the (+) button to add another member. Double click it and change it to your next member.

    使用( + )按钮添加另一个成员。 双击它,并将其更改为您的下一个成员。

    (Change from the entry it added to your matching

    (将其添加到您匹配的条目中进行更改

    cluster0-shard-00–02-xxxxx.mongodb.net:27017)

    cluster0-shard-00-02-xxxxx.mongodb.net:27017 )

  • Enter your replica set name into the field Set Name (This is not optional when connecting to Atlas! Not only is it not optional, it’s actually not easy to find.)

    在“设置名称”字段中输入您的副本集名称 (连接到Atlas时这不是可选的!不仅不是可选的,而且实际上也不容易找到。)

After chatting with their tech support people, they told me to find the replica set name in the following way:

与他们的技术支持人员聊天之后,他们告诉我可以通过以下方式找到副本集名称:

  • From the top-level page for your cluster, click on “Connect”.

    在群集的顶级页面上,单击“连接”。
  • Click on “Connect with the Mongo Shell”

    点击“连接Mongo Shell”
  • Click on “I have the Mongo Shell Installed”

    单击“我已经安装了Mongo Shell”
  • Select “3.4 or earlier” as the Mongo Shell version.

    选择“ 3.4或更早版本”作为Mongo Shell版本。
  • Click the “Copy” button to copy the connection string to the clipboard.

    单击“复制”按钮将连接字符串复制到剪贴板。

Now paste that connection string someplace. Here’s what mine looks like:

现在,将该连接字符串粘贴到某个位置。 这是我的样子:

mongo "mongodb://cluster0-shard-00-00-vkle3.mongodb.net:27017,cluster0-shard-00-01-vkle3.mongodb.net:27017,cluster0-shard-00-02-vkle3.mongodb.net:27017/test?replicaSet=Atlas-shard-0" --ssl --authenticationDatabase admin  --username admin --password <password>

Out of this very long string, you can see the following substring:

在这个很长的字符串中,您可以看到以下子字符串:

replicaSet=Atlas-shard-0

From this, you can see that the name of my replica set is “Atlas-shard-0” (this is case-sensitive!)

由此,您可以看到我的副本集的名称为“ Atlas-shard-0” (区分大小写!)

第二步 (SECOND STEP)

Provide your atlas credentials. First, write a username then password and then provide a DB name. initially, you can write test if you’ve not created a DB yet.

提供您的图集凭据。 首先,输入用户名,然后输入密码,然后提供数据库名称。 最初,如果尚未创建数据库,则可以编写测试

Image for post
Auth Tab
验证标签

第三步 (THIRD STEP)

Here is what the SSL tab should look like:

这是SSL标签的外观:

(For Robo 3T click on use SSL protocol and select self-signed certificate.)

(对于Robo 3T,请单击“使用SSL协议并选择自签名证书”。)

Image for post
SSL Tab
SSL标签

第四步 (FOURTH STEP)

Do not touch SSH tab, just skip to next.

不要触摸“ SSH”选项卡,只需跳到下一步。

Image for post
SSH Tab
SSH选项卡

Now test your connection by clicking on the test. If it passes all the checks then it should connect to DB.

现在,通过单击测试来测试您的连接。 如果它通过所有检查,则应连接到DB。

Image for post

Thanks for reading.

谢谢阅读。

Cheers ❤

干杯❤

翻译自: https://medium.com/weekly-webtips/connecting-to-atlas-using-robo-3t-studio-3t-dfa66ba804af

robo 3t连接

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/387837.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

软件需求规格说明书通用模版_通用需求挑战和机遇

软件需求规格说明书通用模版When developing applications there will be requirements that are needed on more than one application. Examples of such common requirements are non-functional, cookie consent and design patterns. How can we work with these types of…

python版PCA(主成分分析)

python版PCA&#xff08;主成分分析&#xff09; 在用统计分析方法研究这个多变量的课题时&#xff0c;变量个数太多就会增加课题的复杂性。人们自然希望变量个数较少而得到的信息较多。在很多情形&#xff0c;变量之间是有一定的相关关系的&#xff0c;当两个变量之间有一定…

干货|Spring Cloud Bus 消息总线介绍

2019独角兽企业重金招聘Python工程师标准>>> 继上一篇 干货&#xff5c;Spring Cloud Stream 体系及原理介绍 之后&#xff0c;本期我们来了解下 Spring Cloud 体系中的另外一个组件 Spring Cloud Bus (建议先熟悉 Spring Cloud Stream&#xff0c;不然无法理解 Spr…

主成份分析(PCA)详解

主成分分析法&#xff08;Principal Component Analysis&#xff09;大多在数据维度比较高的时候&#xff0c;用来减少数据维度&#xff0c;因而加快模型训练速度。另外也有些用途&#xff0c;比如图片压缩&#xff08;主要是用SVD&#xff0c;也可以用PCA来做&#xff09;、因…

如何安装pylab:python如何导入matplotlib模块

pylab是python下挺不错的一个画图模块&#xff0c;使用也非常简单&#xff0c;记得Mit的计算机科学及编程导论有节课也是用到了这个工具&#xff0c;但这个工具安装不象用起来那么方便&#xff0c;小编就图文全程直播下吧 工具/原料 python2.7.10win10 32位方法/步骤 1缺省状态…

BP神经网络python简单实现

BP神经网络的原理在网上有很详细的说明&#xff0c;这里就不打算细说&#xff0c;这篇文章主要简单的方式设计及实现BP神经网络&#xff0c;并简单测试下在恒等计算&#xff08;编码&#xff09;作测试。 BP神经网络模型图如下 BP神经网络基本思想 BP神经网络学习过程由信息的…

golang的reflection(转)(一)

2019独角兽企业重金招聘Python工程师标准>>> 反射reflection 可以大大提高程序的灵活性&#xff0c;使得interface{}有更大的发挥余地反射可以使用TypeOf和ValueOf函数从接口中获取目标对象信息反射会将匿名字段作为独立字段&#xff08;匿名字段的本质&#xff09;…

datatables.js 简单使用--多选框和服务器端分页

说明&#xff1a;datatables是一款jQuery表格插件。感觉EasyUI的datagrid更易用 内容&#xff1a;多选框和服务器端分页 缘由&#xff1a;写这篇博客的原因是datatables的文档写的不怎么样&#xff0c;找东西很麻烦 环境&#xff1a;asp.net mvc , vs2015sqlserver2012 显示效…

python异常(高级) Exception

异常(高级) Exception 异常回顾:     try-except 语句 捕获(接收)异常通知,把异常流程变为正常流程     try-finally 语句 执行必须要执行的语句.     raise 语句 发送异常通知,同时进入异常流程     assert 语句 发送AssertionError异常     with 语句 wi…

从BMW Vision iNEXT 看宝马如何进军自动驾驶

安全很重要&#xff0c;空间也要很大&#xff0c;砍掉大量物理按键&#xff0c;内饰材料要环保&#xff0c;还要提供自动和主动两套驾驶方案。这些描述仅是BMW Vision iNEXT&#xff08;下称Vision iNEXT&#xff09;概念车的设计之冰山一角。 一款概念车当然无法完全代表未来…

CSS浮动(二)---Float

重新认识float 2.1. 误解和“误用” 既然提到“误用”&#xff0c;各位看官就此想想&#xff0c;自己平日是怎么使用float的&#xff1f;另外&#xff0c;既然“误用”加了引号&#xff0c;就说明这样的使用并不是真正的误用&#xff0c;而是误打误撞使用之后&#xff0c;带…

云原生生态周报 Vol. 2

业界要闻 Kubernetes External Secrets 近日&#xff0c;世界上最大的域名托管公司 Godaddy公司&#xff0c;正式宣布并详细解读了其开源的K8s外部 Secrets 管理项目&#xff1a; Kubernetes External Secrets&#xff0c;简称KES。这个项目定义了ExternalSecrets API&#xff…

centos 7新机使用前操作

关闭防火墙 systemctl stop firewalld&#xff08;停服务&#xff09; systemctl status firewalld&#xff08;看状态&#xff09; systemctl disable firewalld.service &#xff08;永久关闭&#xff09; selinux getenforce&#xff08;查状态&#xff09; vi /etc/selinux…

软件架构演进

传统架构到分布式架构详解 软件架构演进软件架构的发展经历了从单体架构、垂直架构、SOA架构到微服务架构的过程&#xff0c;博客里写到了这四种架构的特点以及优缺点分析&#xff0c;个人学习之用&#xff0c;仅供参考&#xff01; 1.1.1 单体架构 特点&#xff1a;1、所有的…

hadoop0.20.0第一个例子

这是Hadoop学习全程记录第2篇&#xff0c;在这篇里我将介绍一下如何在Eclipse下写第一个MapReduce程序。 新说明一下我的开发环境&#xff1a; 操作系统&#xff1a;在windows下使用wubi安装了ubuntu 10.10 hadoop版本&#xff1a;hadoop-0.20.2.tar.gz Eclipse版本&…

IDEA 修改JavaWeb的访问路径

问题描述 对于我这个刚刚使用IDEA不久的新手来说&#xff0c;能够正常运行就不错了,不过到了后面&#xff0c;可能会觉得IDEA给你分配的默认访问路径很不顺手&#xff0c;比如访问的时候需要通过: http://localhost:8080/web_war_exploded/ 来访问&#xff0c;对于web_w…

做一个vue的todolist列表

<template><div id"app"><input type"text" v-model"todo" ref"ip"/><button click"add()">新增</button><br/><br/><hr/><ul><li v-for"(item,key) in li…

一种解决 MacBook 里的 App Store 无法登录的问题

刚刚买回来的 2018 款带有 touchbar 的 MacBook Pro 15 inc 在用 App Store 安装 app 时一直无法登录成功&#xff08;网络链接都是好的&#xff09;&#xff0c;导致软件都无法更新&#xff0c;折腾了挺一会的。 后来发现是要退出设置里的 iCloud 登录&#xff0c;然后重新登录…

第二次冲刺

1、今日各个成员的问题 组员问题张晋誌对mui的API看得不是很懂&#xff0c;无法顺利的使用袁庆杰基础不牢,编写困难周建峰eclipse没法创建web项目&#xff0c;按照网上的方法&#xff0c;check for updates 和 install new software 之后也没用许家烨给单一功能知道如何实现但项…

单纯形法

单纯形法 如果目标函数中所有系数都非正&#xff0c;那么显然这些变量直接取0是最优的&#xff0c;所以此时答案为即为常数项。 我们要做的就是通过转化把目标函数的系数全部搞成非负。 思路就是用非基变量替换基变量。 先找到一个目标函数中系数为正的变量&#xff0c;在所有限…