對于使用Mac操作系統(tǒng)的開發(fā)者來說,鏈接本地MySQL數(shù)據(jù)庫是一個必須要完成的任務(wù)之一。具體方法如下:
步驟 1:安裝MySQL數(shù)據(jù)庫。
brew install mysql
步驟 2:啟動MySQL數(shù)據(jù)庫。
brew services start mysql
步驟 3:創(chuàng)建MySQL用戶并授權(quán)。
mysql -u root -p
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
步驟 4:在代碼中鏈接本地MySQL數(shù)據(jù)庫。
const mysql = require('mysql');
const connection = mysql.createConnection({
host: 'localhost',
user: 'username',
password: 'password',
database: 'database_name'
});
通過上述步驟,就可以完成Mac平臺下的本地MySQL數(shù)據(jù)庫鏈接。