<p>Berikut adalah langkah mudah untuk menginstall MySQL di macOS menggunakan <strong>Homebrew</strong>.</p>
<pre>
# Update Homebrew
brew update
# Install MySQL
brew install mysql
# Menjalankan MySQL (otomatis sebagai service)
brew services start mysql
# Masuk ke MySQL
mysql -u root
</pre>
<p><strong>Opsional:</strong> jika ingin mengganti password root:</p>
<pre>
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password_baru';
FLUSH PRIVILEGES;
</pre>
<h3>Cover Tutorial</h3>
<img src="https://files.oaiusercontent.com/file_00000000163c61f6ad926644342eb4aa/macos-mysql-homebrew.png" alt="Cover Cara Install MySQL di Brew" width="100%" />
0 Comments