linux如何远程连接mongodb linux如何远程连接另一个linux

主机教程 建站分享 2年前 (2022-12-19) 220次浏览

文章摘要:linux如何远程连接mongodb linux如何远程连接另一个linux

linux远程连接mongodb的方法:1、使用快捷键【Ctrl+Alt+T】打开linux终端命令行模式;2 […]

linux远程连接mongodb的方法:1、使用快捷键【Ctrl+Alt+T】打开linux终端命令行模式;2、输入“mongo ip地址:端口”指令远程连接指定ip地址和端口的mongodb即可。

具体示例如下:

当没有客户端工具,eg:robo3T时,如何修改mongodb里的数据呢?

1、连接mongodb服务器

mongo 1.1.1.1:1688

2、查看数据库列表

show dbs

3、选择使用log库

use log

4、查询【logDB】集合里param=billingSwitch记录

db.logDB.find({"param":"billingSwitch"});

5、修改【logDB】记录中【value字段】的值为ON

db.logSwitchDB.update({param: "billingLogSwitch"}, {$set: {value: 'ON'}}, false, true);

相当于:

update logSwitchDB  set value = ‘ON' where param= ‘billingLogSwitch’;

6、验证是否修改成功

db.logSwitchDB.find({"param":"billingLogSwitch"});

自测OK。


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:linux如何远程连接mongodb linux如何远程连接另一个linux
文章链接:http://www.7966.org/post/9873.html
转载请注明出处

喜欢 (0)