mongodb使用mongoose没有办法链接,但是软件Robomongo和命令mongo都可以连接

发布于 2022-09-04 12:20:17 字数 1001 浏览 7 评论 0

问题如题。写了个小程序,突然之间就没有办法连上了,之前还可以的。
mongodb 和程序都是在本地mongodb 是用brew 安装的。网上查了好多,还是没找到原因,数据库的文件夹也重新删除过,还是不管用。求老司机指导,贴一下代码吧。

let mongoose = require("mongoose");
let utils = require("./utils");
var log4js = require('log4js');
//log the  logger messages to a file, and the console ones as well.
log4js.configure({
    appenders: [
        {
            type: "file",
            filename: "log/trace_all.log",
        },
        {
            type: "console"
        }
    ],
    replaceConsole: true
});
//regist model 
require("./models/comment");
let CommentModel = mongoose.model("Comment");

mongoose.connect("mongodb://localhost:27017/acfun");
let db = mongoose.connection;
db.once("open", () => {
    console.log("mongoose connect mongodb://localhost:27017/acfun success");
});
db.on("error", (err) => {
    console.log(`db error : ${err}`);
    setTimeout(()=>{
        mongoose.connect("mongodb://localhost:27017/acfun");
    },500);
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

殤城〤 2022-09-11 12:20:17
  1. 数据库启动了嘛?

但可醉心 2022-09-11 12:20:17

我删掉你贴出来的代码的其它部分,只留下Mongodb相关,在我本机跑没问题呢!

let mongoose = require("mongoose");

mongoose.connect("mongodb://localhost:27017/acfun");
let db = mongoose.connection;
db.once("open", () => {
    console.log("mongoose connect mongodb://localhost:27017/acfun success");
});
db.on("error", (err) => {
    console.log(`db error : ${err}`);
    setTimeout(()=>{
        mongoose.connect("mongodb://localhost:27017/acfun");
    },500);
});

输出结果:

clipboard.png

所以,你大概需要考虑是其它原因了。

不必你懂 2022-09-11 12:20:17

我的连接方法这样的...没问题

let mongoose = require('mongoose')
let conStr = 'mongodb://127.0.0.1/app'

mongoose.Promise = global.Promise

/*mongoose.set('debug', true)*/

const conn = mongoose.createConnection(conStr)

mongoose.connection.on('error', console.error.bind(console, '数据库连接错误\n'))
mongoose.connection.on('connected', console.log.bind(console, '成功连接到数据库\n\n\n'))

module.exports = conn
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文