Installing MySQL Community Server and MySQL Workbench - yacheng3249/SoniQube GitHub Wiki
Local MySQL
- Visit the official MySQL Community Downloads page at https://dev.mysql.com/downloads/mysql/.
- Select the appropriate version of MySQL Community Server for your platform. You can determine your platform architecture by running
$ uname -mfor Unix and Linux orsysteminfofor Windows.
MySQL Workbench
- Download the MySQL Workbench installer from the official website at https://dev.mysql.com/downloads/workbench/.
- Once the installation is complete, open MySQL Workbench and in the "Home" tab of MySQL Workbench, click "New Connection" to set up a new connection to your local MySQL server.
- Enter the necessary connection details, including the host, port, username, and password. Make sure to use the same username and password that you created when setting up your local MySQL server.
- Once you have successfully connected to your local MySQL server, you can use MySQL Workbench to run queries, manage your database, and more.
DATABASE_URL="mysql://user:password@host:port/database_name"