Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

为数据库开启密码

Code Block
languagebash
>./mongo
>use prod_ireport365_enterprise;
>db.createUser({
  user: "用户名",
  pwd: "密码",
  roles: [
    { role: "readWrite", db: "prod_ireport365_enterprise" }
  ]
});
>exit;

 

 

(1) 修改配置文件

Info

${安装目录}/maco.war/WEB-INF/classes/service-core/spring-data-mongodb.xml

...