MongoDB Failed: (Unauthorized) command top requires authentication の解決方法
環境
MongoDB 6.0.2
現象
mongotop」コマンド実行時に発生。
# mongotop 2023-12-23T03:00:10.327+0000 Failed: (Unauthorized) command top requires authentication
原因
mongotop実行時は「 –authenticationDatabase admin 」の指定が必要なため
解決方法
ユーザー名とパスワードと「 –authenticationDatabase admin 」を指定して実行する
mongotop -u ユーザー名 -p パスワード名 --authenticationDatabase admin