Programing Language
-
MongoDB) 몽고DB(MongoDB) 설치 [참고자료]Programing Language/Database 2021. 4. 18. 19:33
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ Install MongoDB Community Edition on Ubuntu — MongoDB Manual Install MongoDB > Install MongoDB Community Edition > Install MongoDB Community Edition on Linux MongoDB AtlasMongoDB Atlas is a hosted MongoDB service option in the cloud which requires no installation overhead and offers a free tier to get started.Use th docs.mongodb.com
-
-
-
-
-
-
Node.js) Cannot enqueue Handshake after already enqueuing a Handshake.Programing Language/Node.js 2021. 4. 14. 15:39
const mysql = require('mysql'); var connection = mysql.createConnection({ host: 'localhost', port: 3306, user: '1', password: '1', connectionLimit: 1, database: "1" }); connection.connect(); 에서 connection.connect();이 두번연속해서 발생하여 error 처리한 것이다. connection.connect(); 명령어는 app.get("/", () => { 안에 두는것보다 }); 밖에 도두록 하자. 예)