当我使用以下命令在OrientDB 2.0.10中创建数据库时,
CREATE DATABASE plocal:../databases/pincode admin admin plocal
我收到以下错误。
Creating database [plocal:../databases/pincode] using the storage type [plocal]...
Error: com.orientechnologies.orient.core.exception.ODatabaseException: Cannot create database 'pincode'
Error: com.orientechnologies.orient.core.command.OCommandExecutorNotFoundException:Cannot find a command executor for the command request: sql.select count(*) from ORole where name.type() not in ["STRING"] and name is not null
如果我尝试以这种方式创建数据库,我会得到同样的错误,
CREATE DATABASE remote:localhost/pincode root password plocal
我在两种情况下都连接到远程服务器。
即使我尝试连接到数据库,也会弹出类似的命令执行程序错误。
有人可以帮我告诉我哪里出错了吗?