mysql window/linux 安裝及配置

mysql各個版本html

官網下載地址mysql

http://dev.mysql.com/downloads/mysql/linux

各個版本安裝請看官方教程sql

http://dev.mysql.com/doc/refman/5.7/en/installing.htmlshell

請選擇本身安裝的版本windows

window zip安裝安全

  1. 下載window zip包解壓到出來我安裝在D盤中,而後在在文件中新建一個data文件夾
    修改my-default.ini 配置

    配置中反斜槓的使用,你能夠在官方文檔找到這個說明

     
  2. 進入bin目錄執行初始化操做

     
  3. 按照官方步驟這裏須要開啓服務首次(Starting the Server for the First Time)
     

     
  4. 而後安裝



     
  5. 安裝完成後 開啓


     
  6. 因爲mysql對於安全增強了,剛安裝的時候會有一個初始的密碼,該密碼會記錄在你建立的data/目錄裏面的一個xxxx.err文件中


    拷貝密碼的時候別吧空格拷進去了

     
  7. 登入mysql

    我這裏已經把個人密碼修改爲了root了

     
  8. 修改mysql密碼
    mysqladmin -u root -p password root1234 回車 輸入舊的密碼



    我這裏把原來的舊密碼root改爲了root1234了

    到此完成了mysql在window zip的安裝以及配置了
    這個是官方的安裝文檔
    http://dev.mysql.com/doc/refman/5.7/en/windows-installation.html

    若是你中途安裝有問題就remove掉mysql吧服務器

從新安裝吧spa

linux下mysql的安裝code

來看官方文檔吧

http://dev.mysql.com/doc/refman/5.7/en/linux-installation-rpm.html

初始密碼和修改密碼

  • A superuser account 'root'@'localhost' is created. A password for the superuser is set and stored in the error log file. To reveal it, use the following command for RHEL, Oracle Linux, CentOS, and Fedora systems:

    shell> sudo grep 'temporary password' /var/log/mysqld.log

    Use the following command for SLES systems:

    shell> sudo grep 'temporary password' /var/log/mysql/mysqld.log

    The next step is to log in with the generated, temporary password and set a custom password for the superuser account:

shell> mysql -uroot -p
 

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';

這個也是官方 ,

在linux下面的mysql若是須要遠程訪問的話須要配置ip地址的

你想root使用password從任何主機鏈接到mysql服務器的話。

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;

若是你想容許用戶myuser從ip爲192.168.100.120的主機鏈接到mysql服務器,並使用mypassword做爲密碼

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.100.120' IDENTIFIED BY 'password’ WITH GRANT OPTION;

 

若是你有什麼問題話 請留言吧

相關文章
相關標籤/搜索