作者:yunzjyun | 来源:互联网 | 2023-06-07 02:31
在连接mongodb时出现以下错误提示信息events.js:72thrower;Unhandlederrorevent^Error:failedtoconnectto[loc
在连接mongodb时出现以下错误提示信息
events.js:72
throw er; // Unhandled 'error' event
^
Error: failed to connect to [localhost:27017]
at null. (E:\64bit\WebStorm\untitled\node_modules\session-mongoose\node_modules\mongoose\node_modules\mongodb\lib\mongodb\connection\server.js:553:74)
at EventEmitter.emit (events.js:106:17)
at null. (E:\64bit\WebStorm\untitled\node_modules\session-mongoose\node_modules\mongoose\node_modules\mongodb\lib\mongodb\connection\connection_pool.js:140:15)
at EventEmitter.emit (events.js:98:17)
at Socket. (E:\64bit\WebStorm\untitled\node_modules\session-mongoose\node_modules\mongoose\node_modules\mongodb\lib\mongodb\connection\connection.js:512:10)
at Socket.EventEmitter.emit (events.js:95:17)
at net.js:441:14
at process._tickCallback (node.js:415:13) 出现以上错误是因为数据库mongodb没有运行
解决方案:
1、下载:上http://www.mongodb.org/downloads,下载对应的Mongodb版本。
2、启动:为了更好的规划,我们启动之前可以选建立一个db文件(随便在哪建都行,我的建在e:\db),用来存放mongodb数据库。然后启动cmd,进入你下载的mongose解压的路径的bin文件,例如我的为E:\64bit\WebStorm\mongodb2.4.9\bin>,然后输入mongod –dbpath=E:\db,这时启动了,如下图所示:
3、测试是否运行:在浏览器中输入http://localhost:28017/,注意是28017,如果得到下图所示,那么说明成功了,别关掉,然后你就可以连接mongodb了