溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux下安裝Mysql的方法

發(fā)布時(shí)間:2021-08-09 11:41:56 來源:億速云 閱讀:159 作者:chen 欄目:MySQL數(shù)據(jù)庫

本篇內(nèi)容主要講解“Linux下安裝Mysql的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Linux下安裝Mysql的方法”吧!

Linux 下安裝Mysql可真夠麻煩,裝了兩天時(shí)間,終于裝好了,把安裝步驟寫下來,方便以后安裝時(shí)候再別走彎路。

我下載的是源碼包mysql-5.0.77-linux-i686-glibc23.tar.g

一:安裝步驟

存放路徑:/usr/local/下


//解壓縮mysql源文件包
[root@localhost local]# tar zxvf mysql-5.0.77-linux-i686-glibc23.tar.gz

//修改mysql-5.0.77-linux-i686-glibc23.tar.gz目錄名mysql
[root@localhost local]# mv mysql-5.0.77-linux-i686-glibc23 mysql

//增加用戶組及用戶
[root@localhost local]# groupadd mysql
[root@localhost local]# useradd -g mysql mysql


//更新/etc/my.cnf
[root@localhost local]# cd mysql

[root@localhost mysql]# cp support-files/my-medium.cnf /etc/my.cnf
cp: overwrite `/etc/my.cnf'? y

//以mysql用戶初始化數(shù)據(jù)庫,創(chuàng)建Mysql授權(quán)表,必須以mysql用戶
[root@localhost mysql]# ./scripts/mysql_install_db --user=mysql

//設(shè)置目錄權(quán)限
[root@localhost mysql]# chown -R root .
[root@localhost mysql]# chown -R mysql data
[root@localhost mysql]# chgrp -R mysql .

//后臺(tái)啟動(dòng)mysql
[root@localhost mysql]# bin/mysqld_safe --user=root &
此時(shí)如果沒有出現(xiàn)“……ended”字樣,安裝成功!

在命令行執(zhí)行shell> mysql命令,如果出現(xiàn)

Welcome to the MySQL monitor. Commands end with ; or g.

Your MySQL connection id id 1

Server version:5.0.77-log MySQL Community Server (GPL)

Type ‘help’or ‘h’for help. Type ‘c’to clear the buffer.

mysql>

表明MySQL安裝成功!如果出現(xiàn)bash mysql:command not found,則要設(shè)置PATH環(huán)境變量,編輯/etc/profile,在文件末尾添加PATH=$PATH:/usr/local/mysql/bin,保存修改,再執(zhí)行命令

shell> source /etc/profile,重啟系統(tǒng)后就可以了.

二:開機(jī)自啟動(dòng)

不過此時(shí)重啟系統(tǒng)后仍然要在mysql的安裝目錄下使用bin/mysqld_safe --usr=root命令來手動(dòng)啟動(dòng)mysql,如果想讓開機(jī)后自啟動(dòng)mysql可以使用如下命令:

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
chkconfig --add mysql
chkconfig --level 2345 mysql on
chown mysql:mysql -R /usr/local/mysql
service mysqld start

chkconfig --level 2345 msql on這條命令里的2345暫時(shí)不是很清楚是什么意思,這時(shí)重啟系統(tǒng),mysql就會(huì)自動(dòng)啟動(dòng),可以用ps -aef|grep mysql命令查看,在命令行下也可以直接執(zhí)行mysql命令,這是就會(huì)進(jìn)入mysql> 模式,至此安裝完畢。

三:設(shè)置密碼

設(shè)置密碼命令如下:

mysqladmin -u root passwordyour_password

到此,相信大家對(duì)“Linux下安裝Mysql的方法”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI