mysql error : ERROR 1018 (HY000): Can't read dir of '.' (errno: 13)

前端 未结 6 1694
予麋鹿
予麋鹿 2020-12-13 08:36

when i try to view the databases in mysql i get this error:

ERROR 1018 (HY000): Can\'t read dir of \'.\' (errno: 13)

And that stops my app

6条回答
  •  無奈伤痛
    2020-12-13 09:11

    You need to set ownership and permissions for directory:

    chown -R mysql:mysql /var/lib/mysql/ #your mysql user may have different name
    chmod -R 755 /var/lib/mysql/
    

    Note: -R makes commands recursive - you may omit it, if there is no subdirs in /var/lib/mysql/.

提交回复
热议问题