我在Amazon Linux上安装OrientDB 2.1.9我正在尝试登录其标准的Grateful Dead数据库。我不能使用guest,root工作但这不是最佳的。
我使用了默认的guest / guest,就在包中。
$ ORIENTDB_HOME / config / orientdb-server-config.xml文件中的服务器凭据:
答案 0 :(得分:2)
来宾用户只能连接到服务器实例和列表数据库,连接到必须使用数据库用户的数据库或 root
orientdb> connect remote:localhost guest guest
Connecting to remote Server instance [remote:localhost] with user 'guest'...OK
orientdb {server=remote:localhost/}> connect remote:localhost/GratefulDeadConcerts guest guest
Disconnecting from remote server [remote:localhost/]...
OK
Connecting to database [remote:localhost/GratefulDeadConcerts] with user 'guest'...
Error: com.orientechnologies.orient.core.exception.OSecurityAccessException: User or password not valid for database: 'GratefulDeadConcerts'
如果要连接到具有有限权限的数据库,可以使用内置用户 reader 或 writer ,也可以从数据库内部创建自定义用户。