centos6.5下mysql安装与配置

时间:2022-04-21 11:39:26


1. 安装mysql

#yum install mysql-server
等待安装完成。

2. 启动mysql

#mysql
发现系统报错:
centos6.5下mysql安装与配置

查看mysql运行情况:
#ps -A | grep -i mysql
发现没有mysql在运行。
centos6.5下mysql安装与配置

手动启动mysql也没用。

后来想起应该是mysql的守护进程没有启动,启动守护进程:
#service mysqld start
centos6.5下mysql安装与配置

提示说建议为root用户设置密码,我们根据提示进行设置:
#/usr/bin/mysqladmin -u root password '*******'
然后登陆到mysql:
#mysql -h localhost -u root -p
按提示输入刚才设置的密码
centos6.5下mysql安装与配置

登入成功!!


---------------------------------------------------------------
接下来我们通过远程登陆工具XShell登陆到centos进行操作

3. 配置mysql

设置mysql默认编码格式为utf8
#vim /etc/my.con
centos6.5下mysql安装与配置

设置mysql随系统启动:
centos6.5下mysql安装与配置

在mysql服务中设置密码:
我们可以进入mysql之后对用户密码进行设置:
查看用户,端口,密码:
centos6.5下mysql安装与配置

我们把yhao@%这个的密码设置为空(因为有特殊符号,所以加上‘’)
centos6.5下mysql安装与配置

删除多余的用户:
centos6.5下mysql安装与配置

4. 对mysql进行测试

1)新建用户并对其赋予权限:

centos6.5下mysql安装与配置
centos6.5下mysql安装与配置

2)测试test用户

centos6.5下mysql安装与配置
centos6.5下mysql安装与配置
centos6.5下mysql安装与配置
centos6.5下mysql安装与配置
上述是对test用户进行数据库表的增、删、改、查,操作。以及对数据库test的删除操作。

删除测试用户:
centos6.5下mysql安装与配置

以上是我对mysql的安装和配置的理解,如有谬误,敬请指出,希望能与大家多交流!!