Mac安裝mysql資料庫 親測有用

2021-10-09 09:50:24 字數 2126 閱讀 6318

2. 雙擊mysql-5.7.17-macos10.12-x86_64.dmg進行解壓, 雙擊mysql-5.7.17-macos10.12-x86_64.pkg進行安裝

3. continue -> continue, agree -> install -> 輸入管理員密碼

4. 記錄下來彈窗中的密碼

5. 進入系統偏好設定, 找到mysql, 啟動服務

6. 將mysql的命令新增到系統中

(1).進入/usr/local/mysql/bin,檢視此目錄下是否有mysql

(2).執行vim ~/.bash_profile

在該檔案中新增mysql/bin的目錄

path=$path:/usr/local/mysql/bin

新增完成後,按esc,然後輸入wq儲存。

(3).最後在命令列輸入source ~/.bash_profile

7. 通過mysql -uroot -p登入mysql, 輸入之前儲存的密碼

8. 重置mysql初始密碼

set password for 'root'@'localhost' = password('newpassword');

9.開啟終端,檢視mysql是否存

執行語句為: ps aux | grep mysql

10.執行命令切換到這個目錄底下,然後使用ls命令檢視,命令如下:

執行語句為:cd /usr/local/mysql

執行語句為:ls

license data keyring share

readme docs lib support-files

bin include man

11.切換到bin目錄下,使用ls命令檢視

執行語句為:cd bin/

執行語句為:ls

ibd2sdi mysqladmin

innochecksum mysqlbinlog

lz4_decompress mysqlcheck

my_print_defaults mysqld

myisam_ftdump mysqld_multi

myisamchk mysqld_safe

myisamlog mysqldump

myisampack mysqldumpslow

mysql mysqlimport

mysql_config mysqlpump

mysql_config_editor mysqlshow

mysql_secure_installation mysqlslap

mysql_ssl_rsa_setup perror

mysql_tzinfo_to_sql zlib_decompress

mysql_upgrade

12.登入mysql,輸入指令後根據提示輸入初始密碼

執行語句為:./mysql -u root -p

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is 10

server version: 8.0.21 mysql community server - gpl

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql> 

mysql> show databases;

| database                    |

| information_schema   |

| mysql                          |

| performance_schema |

| sys                              |

4 rows in set (0.01 sec)

mysql> 

mac安裝mysql資料庫

2,按照步驟安裝 3,終端執行 mysql v 指令報錯 bash mysql command not found 在當前使用者的根目錄下 cd 然後修改該目錄下的.bash profile檔案並新增export path usr local mysql bin sudo vim bash prof...

LINUX安裝Mysql 親測可用

1 檢視mysql版本 方法一 status 方法二 select version 2 mysql啟動 停止 重啟常用命令 a 啟動方式 1 使用 service 啟動 root localhost service mysqld start 5.0版本是mysqld root szxdb etc s...

Mac上安裝mysql資料庫

2.雙擊mysql 5.7.17 macos10.12 x86 64.dmg進行解壓,雙擊mysql 5.7.17 macos10.12 x86 64.pkg進行安裝 3.continue continue,agree install 輸入管理員密碼 4.記錄下來彈窗中的密碼 5.進入系統偏好設定,...