Instale mysql no Fedora

1. Instale os pacotes mysql.

$ yum info mysql
Name : mysql
Arch : x86_64
Version : 5.5.28
Release : 1.fc17
Size : 28 M
Repo : installed
From repo : updates
Summary : MySQL client programs and shared libraries
URL
: http://www.mysql.com
License : GPLv2 with exceptions
Description : MySQL is a multi-user, multi-threaded SQL database server. MySQL is a
: client/server implementation consisting of a server daemon (mysqld)
: and many different client programs and libraries. The base package
: contains the standard MySQL client programs and generic MySQL files.
$ yum info mysql
-server
Installed Packages
Name : mysql-server
Arch : x86_64
Version : 5.5.28
Release : 1.fc17
Size : 45 M
Repo : installed
From repo : updates
Summary : The MySQL server and related files
URL
: http://www.mysql.com
License : GPLv2 with exceptions
Description : MySQL is a multi-user, multi-threaded SQL database server. MySQL is a
: client/server implementation consisting of a server daemon (mysqld)
: and many different client programs and libraries. This package contains
: the MySQL server and some accompanying files and directories.
$ yum install mysql mysql
-server

2. Inicie os servidores mysql e adicione-o à inicialização.

$ systemctl start mysqld.service 
$ systemctl enable mysqld
.service

3. Configure com o script de instalação segura.

$ /usr/bin/mysql_secure_installation 

Ou você pode usar este comando para seu env de teste local.
$ mysqladmin -u senha root $ passwd

4. Conecte-se ao mysql.

$ mysql -u root -p
$ mysql
-h localhost -u root -p
mysql
>

Agora você está dentro, aproveite!