Navicat客户端连接MySQL数据库设置

WBOY
풀어 주다: 2016-06-07 17:05:52
원래의
1136명이 탐색했습니다.

在redhat5.5上用rpm安装MySQL 5.6装好mysql之后 见 http://www.linuxidc.com/Linux/2011-10/44882.htm用mysqladmin修改密码(mysq

在RedHat5.5上用rpm安装MySQL 5.6装好mysql之后 见

用mysqladmin修改密码(mysqladmin –u root password “mysql”)提示

mysqladmin:Can't turn off logging; error: 'Access denied; you need the SUPER privilege forthis operation'

解决办法:

修改mysql登录设置

vi /etc/my.cnf   (我们发现etc下没有my.cnf文件)

通过查询知道,安装完MySQL 后,/etc/my.cnf 文件默认是不存在的,可以在/usr/share/doc/MySQL-servercommunity下找到my-huge.cnf 、my-innodb-heavy-4G.cnf 、my-large.cnf 、mymedium.cnf 、my-small.cnf 等文件,根据内存大小将其中合适你机器配置的文件拷贝到/etc/my.cnf(一般应用选mymedium.cnf即可)

编辑my.cnf文件

在[mysqld]段中加入 skip-grant-tables

保存之后重启mysql服务

/etc/rc.d/init.d/mysql restart

重启mysql服务之后修改mysql密码

[root@shiyue]# mysql

Welcome to the MySQL monitor. Commands endwith ; or \g.
Your MySQL connection id is 3 to server version: 3.23.56

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use mysql ;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> UPDATE user SET Password = password ( 'mysql' ) WHERE User = 'root' ;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 2 Changed: 0 Warnings: 0

mysql> flush privileges ;
Query OK, 0 rows affected (0.01 sec)

mysql> quit
Bye

 

退出mysql之后把刚修改的配置文件改回来(vi /etc/my.cnf)

重启mysql服务

mysql-u root -p登录mysql

登陆成功!

 

再通过navicat连接mysql数据库,,提示Can't get hostname for your address                          

 

解决方法还是修改my.cnf文件,在[mysqld] 下面添加一行:skip-name-resolve,保存重启mysql(/etc/init.d/mysql restart)

 

赋权:

Mysql –u root –p mysql

Show databases

Use mysql

grant all on *.* to 'root'@'192.168.1.254'identified by 'mysql';

quit

 

好重新用navicat进行连接,OK,测试通过!

linux

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!