DB/MongoDB (2) 썸네일형 리스트형 [MongoDB] Error at connecting to MongoDb Atlas Server *** It looks like this is a MongoDB Atlas cluster. Please ensure that your IP whitelist allows connections from your network. I was able to solve it by adding my white-listing my IP address under Clusters -> security -> IP Whitelist. Instead of clicking my current ip address, just search what's my ip on google and paste that instead. I have had this issue connecting to a MongoDB Atlas cluster. I.. [Nodejs/MongoDb] MongoDb 연결해서 데이터 불러오기 1. cmd 창에서 DB 생성 (1) MongoDB 접속 mongo "mongodb+srv://몽고디비주소" --username 아이디 mongodb+srv://아이디:비번@몽고디비주소?retryWrites=true&w=majority (2) 데이터 추가 db.콜렉션이름.insert([{.insert([{키1:"내용1", 키2:"내용2"~~~}, {키1:"내용1", 키2:"내용2"~~~}]) (3) 데이터 조회 db.콜렉션이름.find() 2. MongoDB에 저장된 데이터를 확인 3. NodeJs에서 MongoDB에 저장된 데이터 연결 위 데이터를 불러와 사용하려면 아래 코드를 사용하면 됩니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 .. 이전 1 다음