Install MySQL Community Server
- Download from https://dev.mysql.com/downloads/mysql/.
Windows: Use MySQL Installer (recommended). It configures MySQL as a service.
macOS: Use DMG installer package.
Linux (e.g., Ubuntu): Use APT repository guide at https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/, then sudo apt update && sudo apt install mysql-server.
- During install, note the root password (generated or set).
Install MySQL Workbench
Download from https://dev.mysql.com/downloads/workbench/. Use GUI for visual management.
Verify Installation
Start server if not auto-started. Connect via terminal: mysql -u root -p (enter password).