centos7下安装mysql

Posted Frankiee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7下安装mysql相关的知识,希望对你有一定的参考价值。

【前提】

使用centos7已经大于使用centos6.x了,但是因为centos7中利用systemctl进行进程管理

所以其中有些用法需要特别记录一下

【安装mysql

wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
rpm -ivh mysql-community-release-el7-5.noarch.rpm

ls -1 /etc/yum.repos.d/mysql-community*
yum install mysql-server
service mysqld start或者/etc/init.d/mysqld start
---进入mysql (mysql -uroot) 需要先配置密码
方法1: 用SET PASSWORD命令
MySQL -u root
  mysql> SET PASSWORD FOR ‘root‘@‘localhost‘ = PASSWORD(‘newpass‘);
方法2:用mysqladmin
mysqladmin -u root password "newpass"
如果root已经设置过密码,采用如下方法
mysqladmin -u root password oldpass "newpass"
方法3: 用UPDATE直接编辑user表
mysql -u root
 mysql> use mysql;
 mysql> UPDATE user SET Password = PASSWORD(‘newpass‘) WHERE user = ‘root‘;
 mysql> FLUSH PRIVILEGES;
在丢失root密码的时候,可以这样
mysqld_safe --skip-grant-tables&
  mysql -u root mysql
  mysql> UPDATE user SET password=PASSWORD("new password") WHERE user=‘root‘;
  mysql> FLUSH PRIVILEGES;
查看最大连接数
show variables like ‘max_connections‘;
show tables;
错误日志文件路径
mysql> show variables like ‘log_error‘;
慢查询日志文件路径
mysql> show variables like ‘slow_query_log_file‘;
日志文件路径
mysql> show variables like ‘general_log_file‘;











以上是关于centos7下安装mysql的主要内容,如果未能解决你的问题,请参考以下文章

centos7下使用yum安装mysql

centos7下安装mysql

Centos7下安装Mysql(阿里云)

CentOS7下安装MySQL

CentOS7下安装mysql5.7

CentOS7下MySQL的安装与配置