標籤:linux centos6.5 yum安裝mysql 5.6
直接按步驟安裝
# wget # rpm -ivh mysql-community-release-el6-5.noarch.rpm[[email protected] ~]# yum repolist all | grep mysql 查看一下是否已經有mysql可安裝檔案mysql-connectors-community MySQL Connectors Community enabled: 36mysql-connectors-community-source MySQL Connectors Community - So disabledmysql-tools-community MySQL Tools Community enabled: 47mysql-tools-community-source MySQL Tools Community - Source disabledmysql55-community MySQL 5.5 Community Server disabledmysql55-community-source MySQL 5.5 Community Server - So disabledmysql56-community MySQL 5.6 Community Server enabled: 358mysql56-community-source MySQL 5.6 Community Server - So disabledmysql57-community-dmr MySQL 5.7 Community Server Deve disabledmysql57-community-dmr-source MySQL 5.7 Community Server Deve disabled
yum 安裝即可
[[email protected] ~]# yum install mysql-community-server -y安裝成功後# service mysqld start設定root密碼# mysql -u root# use mysql;# update user set password=PASSWORD("這裡輸入root使用者密碼") where User=‘root‘;# flush privileges; mysql安全設定# mysql_secure_installation設定開啟自啟動命令# chkconfig mysqld on
本文出自 “xiangcun168” 部落格,請務必保留此出處http://xiangcun168.blog.51cto.com/4788340/1928907
linux CentOS6.5 yum安裝mysql 5.6