728x90
반응형
아래와 같이 mongoexport를 하는데, authentication 장애가 발생하였습니다. mongorestore 를 할 때에도 이런 메세지가 발생하는 경우도 있다고 합니다.
# mongoexport -u user -p password --db data-server --collection StateEntity --out StateEntity.json
2018-12-12T15:31:29.089+0900 error connecting to db server: server returned error on SASL authentication step: Authentication failed.
이런 경우에는 아래와 같이 --authenticationDatabase 옵션을 통해서 authentication db를 지정해주어야 정상적으로 해당 db로 접속이 된 뒤 작업이 이루어지게 됩니다.
# mongoexport --authenticationDatabase admin -u user -p password --db data-server --collection StateEntity --out StateEntity.json
2018-12-12T15:50:48.810+0900 connected to: localhost
2018-12-12T15:50:48.811+0900 exported 1 record
728x90
반응형
'IT 지식정리 > Troubleshoot' 카테고리의 다른 글
크롬에서 네트워크 레코딩(HAR 레코딩) 하는 방법 (1) | 2019.01.12 |
---|---|
쉘스크립트 bad interpreter: No such file or directory 에러 (1) | 2018.12.08 |
HTTP/1.1 500 Internal Server Error 에러 (0) | 2018.12.08 |
java.io.IOException: Too many open files 에러 (0) | 2018.12.08 |