#1193 - Unknown system variable 'lc_messages' when trying to login to phpmyadmin

前端 未结 6 1595
我在风中等你
我在风中等你 2020-11-30 11:39

I have recently installed MySQL and phpMyAdmin, but when I try to login to phpMyAdmin with the root credentials I get the following error for this query:

SQL query:<

6条回答
  •  一个人的身影
    2020-11-30 11:58

    Uninstall your mysql version and all dependencies. To see all your mysql and dependencies packages installeds try this command:

    - rpm -qa | grep mysql
    

    For uninstall:

    - yum erase mysql
    - yum erase mysqlPackageDependencie
    ...
    

    When all dependencies are uninstalled install the new mysql version:

    - yum install mysql55-server
    

    Start your Service Mysql:

    - service mysqld start
    

    Great! All works perfect now! :)

提交回复
热议问题