1. 檢視系統是否已經有mysql安裝
說明沒有安裝
如下介面上有:
3. 安裝mysql的yum源,兩種方式安裝,也可以用yum命令安裝
比如:yum -y install mysql80-community-release-el7-1.noarch.rpm
4. 安裝mysql伺服器
yum install mysql-community-server 安裝過程中會問yes嗎,選yes。
出現如下算完成安裝啦:
5. 安裝mysql後需要重啟mysql
[root@localhost ~]# service mysqld restart
redirecting to /bin/systemctl restart mysqld.service
6. 初次登陸和隨機密碼檢視
剛開始安裝的mysql會產生乙個隨機密碼,我們需要找到它,我們可以通過grep命令查詢隨機root密碼。並用它進行登陸來修改密碼:
[root@localhost ~]# grep "password" /var/log/mysqld.log
2018-08-01t06:15:38.658556z 5 [note] [my-010454] [server] a temporary password is generated for root@localhost: 7*nv9jskw=pw
[root@localhost ~]# mysql -uroot -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 9
server version: 8.0.12
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
mysql>
7. 修改密碼
登陸mysql後輸入以下進行修改
alter user 'root'@'localhost' identified by 'daerdee@112' (密碼是daerdee@112)
8. 退出mysql,並以新密碼登陸就可以正常使用mysql了。
mysq安裝總結
位址為 名為linux generic glibc 2.5 x86,64 bit compressed tar archive 的檔案,完成後的檔案為mysql 5.6.27 linux glibc2.5 x86 64.tar.gz。至於你是怎麼放到linux裡面就隨你了,可以用rz,或者直接在li...
基礎練習03
1.將陣列a的內容和陣列b的內容交換 include include include int main int b int tmp 0 int i 0 int size sizeof a sizeof a 0 for i 0 i size i for i 0 i size i printf n fo...
習題練習03
編寫乙個函式來查詢字串陣列中的最長公共字首。如果不存在公共字首,返回空字串 示例 1 輸入 flower flow flight 輸出 fl 示例 2 輸入 dog racecar car 輸出 解釋 輸入不存在公共字首。說明 所有輸入只包含小寫字母 a z param strs return va...