codecamp

OrientDB列出数据库

本章介绍如何从OrientDB命令行获取实例中的所有数据库的列表。
以下语句是info命令的基本语法。

LIST DATABASES

注意:您只能在连接到本地或远程服务器后使用此命令。

在检索数据库列表之前,我们必须通过远程服务器连接到localhost服务器。 需要提醒的是,连接到localhost实例的用户名和密码分别是guest和guest,这是在orintdb / config / orientdb-server-config.xml文件中配置的。
您可以使用以下命令连接到localhost数据库服务器实例。

orientdb> connect remote:localhost guest 

它会询问密码。根据配置文件,guest的密码也是guest。如果成功连接,您将获得以下输出。

Connecting to remote Server instance [remote:localhost] with user 'guest'...OK 
orientdb {server = remote:localhost/}>

连接到localhost数据库服务器后,可以使用以下命令列出数据库。

orientdb {server = remote:localhost/}> list databases

如果成功执行,您将获得以下输出:

Found 6 databases: 
* demo (plocal) 
* s2 (plocal) 
* s1 (plocal) 
* GratefulDeadConcerts (plocal) 
* s3 (plocal) 
* sample (plocal) 
orientdb {server = remote:localhost/}>
OrientDB信息数据库
OrientDB冻结数据库
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }