在使用mongoDB之前,我是OrientDB的新手。我想知道如何创建与OrientDB的连接。
我使用下面的代码,但不像MongoDB那样工作。我还想打印我的应用程序运行的端口号:'聆听6060号港口'
var orientdb = require('orientdb');
var dbConfig = {
user_name: "root",
user_password: "root"
};
var serverConfig = {
host: "localhost",
port: 2480 //server port Number
};
console.log(orientdb)
var server = new orientdb.Server(serverConfig);
var db = new orientdb.Db("remote:localhost/Gunjan", server, dbConfig);
//I also used 'Gunjan' only here.
db.open(function(err) {
if (err) {
throw err;
}
console.log("Successfully connected to OrientDB");
});
答案 0 :(得分:4)
请注意,orientdb
已分叉为oriento
,这是维护的。
示例:
var Oriento = require('oriento');
var server = Oriento({
host: 'localhost',
port: 2424,
username: 'root',
password: 'yourpassword'
});
// List databases
server.list().then(function (dbs) {
console.log('There are ' + dbs.length + ' databases on the server.');
});
请注意,您必须在localhost:2424
上运行OrientDB服务器。