Home  >  Article  >  Database  >  Fedora安装mysql数据库_MySQL

Fedora安装mysql数据库_MySQL

WBOY
WBOYOriginal
2016-05-27 13:46:321353browse

下载MySQL5.7.9 yum仓库

wget http://dev.mysql.com/get/mysql57-community-release-fc23-7-noarch.rpm

 

rpm -ivh mysql57-community-release-fc23-7-noarch.rpm

验证仓库

yum repolist enable | grep "mysql.*-community.*"

 

安装

yum install mysql-community-server

 

启动mysql服务

service mysql start

 

查看mysql服务状态

service mysql status

 

获取临时密码

cat /var/log/mysql.log | grep "A temporary password"

 

修改密码

mysqladmin –uroot –p 'temp passwd' password 'new passwd'

 

登陆mysql

mysqladmin –user=XXX –password=XXX

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:mysql内置函数大全_MySQLNext article:mysql事物_MySQL