安装mongodb

image.png

  • 解压tgz,进入bin目录
    mongo为连接工具,mongod为server,
    默认mongod数据存储地址为/data/db/
  • 遇到的问题【外网无法连接,本地可以】
    是因为mongod没有设置权限,并且mongod启用要使用 --auth
    mongo连接之后执行

    db.createUser({user:"star",pwd:"passwod",roles:\[{role:"readWrite",db:"star"}\]}) # 创建用户
    db.auth('admin','passwod') # 命令行使用登录权限

php安装mongodb扩展

  • pecl install mongodb
  • configuration option "php_ini" is not set to php.ini location You should add "extension=mongodb.so" to php.ini
  • 报错【The SCRAM_SHA_256 authentication mechanism requires libmongoc built with ENA】
    是因为本地没有 openssl
    yum install -y openssl openssl-devel

Cazy
6 声望2 粉丝