centOS安裝mysql5.7詳細(xì)教程
本文為大家分享了centOS下安裝mysql5.7詳細(xì)步驟,供大家參考,具體內(nèi)容如下
第一步:
第一句檢測(cè)系統(tǒng)是否自帶安裝mysql,若有執(zhí)行第二句刪除系統(tǒng)自帶的mysql及其依賴。
yum list installed | grep mysql yum -y remove mysql-libs.x86_64
第二步:
給CentOS添加rpm源,并且選擇較新的源,下面代碼逐句執(zhí)行
wget dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm yum localinstall mysql-community-release-el6-5.noarch.rpm yum repolist all | grep mysql yum-config-manager --disable mysql55-community yum-config-manager --disable mysql56-community yum-config-manager --enable mysql57-community-dmr yum repolist enabled | grep mysql
第三步:
安裝mysql 服務(wù)器
yum install mysql-community-server
第四步:
service mysqld start
第五步:
查看mysql是否自啟動(dòng),并且設(shè)置開啟自啟動(dòng)
chkconfig --list | grep mysqld chkconfig mysqld on
第六步:
這一步很重要?。?!
不知道從mysql哪個(gè)版本開始,mysql的root默認(rèn)密碼就不為空了,在安裝的過(guò)程中默認(rèn)密碼保存在安裝日志中了。我們要通過(guò)安裝日志找到默認(rèn)密碼,用默認(rèn)密碼登陸mysql成功后會(huì)強(qiáng)行讓你修改密碼,修改的密碼還要夠復(fù)雜(復(fù)合mysql默認(rèn)的密碼策略)才能修改成功,一般帶大小寫字母特殊字符和數(shù)字超過(guò)8個(gè)字符就可以。
首先找到安裝日志
find / -name mysqld.log
然后發(fā)現(xiàn)該日志文件路徑在 /var/log/mysqld.log。然后用下面命令打開,按‘i'鍵上翻
vim /var/log/mysqld.log
上圖紅色地方就是root密碼所在地
第七步:
mysql安全設(shè)置
mysql_secure_installation
輸入上面命令進(jìn)行下面步驟
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we'll need the current password for the root user. If you've just installed MySQL, and you haven't set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none):<–初次運(yùn)行,輸入剛剛找到的初始密碼,會(huì)強(qiáng)制你先修改密碼才能進(jìn)行下去 OK, successfully used password, moving on… Setting the root password ensures that nobody can log into the MySQL root user without the proper authorisation. Set root password? [Y/n] <– 是否設(shè)置root用戶密碼,輸入y并回車或直接回車 New password: <– 設(shè)置root用戶的密碼 Re-enter new password: <– 再輸入一次你設(shè)置的密碼 Password updated successfully! Reloading privilege tables.. … Success! By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] <– 是否刪除匿名用戶,生產(chǎn)環(huán)境建議刪除,所以直接回車 … Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] <–是否禁止root遠(yuǎn)程登錄,根據(jù)自己的需求選擇Y/n并回車,建議禁止 … Success! By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] <– 是否刪除test數(shù)據(jù)庫(kù),直接回車 - Dropping test database… … Success! - Removing privileges on test database… … Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] <– 是否重新加載權(quán)限表,直接回車 … Success! Cleaning up… All done! If you've completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL! [root@server1 ~]#
第八步:
可選步驟,原來(lái)Linux下的MySQL默認(rèn)是區(qū)分表名大小寫的,通過(guò)如下設(shè)置,可以讓MySQL不區(qū)分表名大小寫:
1、用root登錄,修改 /etc/my.cnf;
2、在[mysqld]節(jié)點(diǎn)下,加入一行: lower_case_table_names=1
3、重啟MySQL即可; service mysqld restart
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
mssql2008 自定義表類型實(shí)現(xiàn)(批量插入或者修改)
在做大型網(wǎng)站或者系統(tǒng)的時(shí)候,經(jīng)常會(huì)遇到個(gè)問(wèn)題就是批量插入或者修改數(shù)據(jù)庫(kù);今天這邊不講SqlBulkCopy,只簡(jiǎn)單講sql自定義表類型,感興趣的朋友可以了解下哦,希望本文對(duì)你有所幫助2013-01-01java實(shí)現(xiàn)mysql自動(dòng)更新創(chuàng)建時(shí)間與更新時(shí)間的兩種方式
在實(shí)際開發(fā)中,每條數(shù)據(jù)的創(chuàng)建時(shí)間和修改時(shí)間,盡量不需要應(yīng)用程序去記錄,而由數(shù)據(jù)庫(kù)獲取當(dāng)前時(shí)間自動(dòng)記錄創(chuàng)建時(shí)間,本文主要介紹了java實(shí)現(xiàn)mysql自動(dòng)更新創(chuàng)建時(shí)間與更新時(shí)間的兩種方式,感興趣的可以了解一下2024-01-01mysql 5.7.18 zip版安裝配置方法圖文教程(win7)
這篇文章主要為大家詳細(xì)介紹了win7下mysql 5.7.8 zip版安裝配置方法圖文教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-08-08mysql中優(yōu)化和修復(fù)數(shù)據(jù)庫(kù)工具mysqlcheck詳細(xì)介紹
這篇文章主要介紹了mysql中優(yōu)化和修復(fù)數(shù)據(jù)庫(kù)工具mysqlcheck詳細(xì)介紹,需要的朋友可以參考下2014-05-05數(shù)據(jù)庫(kù)索引的知識(shí)點(diǎn)整理小結(jié),你所需要了解的都在這兒了
這篇文章主要介紹了數(shù)據(jù)庫(kù)索引的知識(shí)點(diǎn)整理小結(jié),你所需要了解的都在這兒了,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-07-07