Your MySQL connection id is 1
Server version: 5.5.16 MySQL Community Server (GPL)
Copyright (c) 2000,2011,Oracle and/or its affiliates. All rights reserved.
Centos以下RPM方式安装MYSQL5.5教程图2
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
初次装置时,默认暗码为空,能够运用如下指令修改root暗码,
mysqladmin -u root passwordmypassword
mypassword 为你设定的新暗码
然后再次登录
mysql -u root –p
rpm包装置的MySQL是不会装置/etc/my.cnf文件的,解决方法,只需要仿制/usr/share/mysql目录下的my-huge.cnf 文件到/etc目录,并改名为my.cnf即可
cp /usr/share/mysql/my-huge.cnf /etc/my.cnf
配置长途拜访
处于安全考虑,Mysql默认是不允许长途拜访的,能够运用下面敞开长途拜访
//赋予任何主机拜访数据的权限
Centos以下RPM方式安装MYSQL5.5教程图3
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION
//使修改收效
mysql>FLUSH PRIVILEGES
假如仍然不能长途拜访的话,那就很可能防火墙的原因了,能够在防火墙中敞开3306端口或者爽性关掉防火墙。
/etc/init.d/iptables status
会得到一系列信息,阐明防火墙开着。
/etc/init.d/iptables stop
永久封闭:
chkconfig --level 35 iptables off
以上是对自己初次在CentOS上装置mysql的一个总结,希望对大家有协助。