몽고디비를 불러올 때 발생하는 에러로 유저네임이나 패스워드에 문제가 있을 때 발생한다.
에러
Username and password must be escaped according to RFC 3986, use urllib.parse.quote_plus()
해결
mongo_uri = "mongodb://username:" + urllib.quote("password") + "@127.0.0.1:27001/"
urllib.quote를 사용해 유저네임이나 패스워드를 따로 분리해 적용하면 된다
'에러 > mongodb' 카테고리의 다른 글
[MongoDB] password에 @ 가 포함되어 있을 시 (0) | 2021.03.18 |
---|---|
[MongoDB] getaddrinfo eai_again mongo 에러 (0) | 2021.03.18 |
[MongoDB] command listcollections requires authentication 에러 (0) | 2021.03.18 |
mongorestore 에러 (0) | 2020.12.15 |
MongoDB 실행 에러 (0) | 2020.12.15 |
댓글