Install MySQL Server Community Edition on Fedora 20_MySQL

WBOY
풀어 주다: 2016-05-31 08:47:04
원래의
1325명이 탐색했습니다.

Fedora

Today we are going to go through the process of installing MySQL Server Community Edition on Fedora 20.  You could of course simply use MariaDB, but this will focus on the Community Edition.

Install the MySQL Repository

We will need to install the MySQL Community Repository, the MySQL project hosts an RPM file with the repository.  First lets look at the repositories that I have already.

# yum repolistLoaded plugins: langpacks, refresh-packagekitrepo id repo name statusadobe-flashplayer Adobe Flash Player - x86_64 2fedora/20/x86_64 Fedora 20 - x86_64 38,597google-chrome Google Chrome - x86_64 3oracle-virtualbox/20/x86_64 Oracle VirtualBox - x86_64 10rpmfusion-free/20/x86_64 RPM Fusion for Fedora 20 - Free 468rpmfusion-free-updates/20/x86_64 RPM Fusion for Fedora 20 - Free - Updates 464rpmfusion-nonfree/20/x86_64 RPM Fusion for Fedora 20 - Nonfree 203rpmfusion-nonfree-updates/20/x86_64 RPM Fusion for Fedora 20 - Nonfree - Updates 299updates/20/x86_64 Fedora 20 - x86_64 - Updates 17,616repolist: 57,662
로그인 후 복사

Now lets install the release file.  Keep in mind, you can do a separate wget or curl to download the file, or you can use the command as I have.  As of the time of this writing there are also repositories for Fedora 18 and 19 and Enterprise Linux 5, 6 and 7 (beta).  Though the only procedures I have validated are the Fedora 20, they should all work the same.

# yum localinstall http://dev.mysql.com/get/mysql-community-release-fc20-5.noarch.rpm
로그인 후 복사

Now lets compare our new repositories to our old and we will see it has added 3 repositories, mysql56-community, mysql-tools-community and mysql-connectors-community

# yum repolistLoaded plugins: langpacks, refresh-packagekitrepo id repo name statusadobe-flashplayer Adobe Flash Player - x86_64 2fedora/20/x86_64 Fedora 20 - x86_64 38,597google-chrome Google Chrome - x86_64 3mysql-connectors-community/20/x86_64 MySQL Connectors Community 14mysql-tools-community/20/x86_64 MySQL Tools Community 8mysql56-community/20/x86_64 MySQL 5.6 Community Server 57oracle-virtualbox/20/x86_64 Oracle VirtualBox - x86_64 10rpmfusion-free/20/x86_64 RPM Fusion for Fedora 20 - Free 468rpmfusion-free-updates/20/x86_64 RPM Fusion for Fedora 20 - Free - Updates 464rpmfusion-nonfree/20/x86_64 RPM Fusion for Fedora 20 - Nonfree 203rpmfusion-nonfree-updates/20/x86_64 RPM Fusion for Fedora 20 - Nonfree - Updates 299updates/20/x86_64 Fedora 20 - x86_64 - Updates 17,616repolist: 57,741
로그인 후 복사

Install MySQL Server Community

Now that we have the repository we can use yum list to determine what version is available.

# yum list mysql-community-serverLoaded plugins: langpacks, refresh-packagekitAvailable Packagesmysql-community-server.x86_64 5.6.19-1.fc20 mysql56-community
로그인 후 복사

Then we can do a yum install to actually perform the install.

# yum install mysql-community-server
로그인 후 복사

Enable the MySQL Server Software

Now we will set the mysqld service to start on reboot.

# systemctl enable mysqldln -s '/usr/lib/systemd/system/mysqld.service' '/etc/systemd/system/mysql.service'ln -s '/usr/lib/systemd/system/mysqld.service' '/etc/systemd/system/multi-user.target.wants/mysqld.service'
로그인 후 복사

Now manually start the mysqld service.  For a development environment, I also added bind-address=127.0.0.1 to /etc/my.cnf under the [mysqld] section.

# service mysqld startRedirecting to /bin/systemctl start mysqld.service
로그인 후 복사

Install MySQL Workbench Community

Now that we have the repository enabled we can also install additional software such as MySQL Workbench.

# yum install mysql-workbench
로그인 후 복사
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!