ThinkCMF5安装后的生成的数据库配置文件在data/conf/database.php;

    1. <?php
    2. return [
    3. // 数据库类型
    4. 'type' => 'mysql',
    5. // 服务器地址
    6. 'hostname' => 'localhost',
    7. // 数据库名
    8. 'database' => 'thinkcmf5',
    9. // 用户名
    10. 'username' => 'root',
    11. // 密码
    12. 'password' => '你的数据库密码',
    13. // 端口
    14. 'hostport' => '3306',
    15. // 数据库编码默认采用utf8
    16. 'charset' => 'utf8mb4',
    17. // 数据库表前缀
    18. 'prefix' => 'cmf_',
    19. "authcode" => '你的加密码',
    20. ];

    原文: https://www.thinkcmf.com/docs/cmf/数据库配置.html