mongo test --eval db.createUser({user:"rwuser", pwd:"titan7vc65x", roles:[{role:"readWrite", db:"test"}]})
用這個指令也不行,我這邊需要shell腳本裡建立mongodb用戶,網路上找不到一點資訊。
建立語句沒錯,你要找的東西不在mongo的資料裡面,你需要了解的是linux shell的用法,關於空格或引號的轉義
mongo test --eval "db.createUser({user:\"rwuser\", pwd:\"titan7vc65x\", roles:[{role:\"readWrite\", db:\"test\"}]})"
建立語句沒錯,你要找的東西不在mongo的資料裡面,你需要了解的是linux shell的用法,關於空格或引號的轉義