
modlogsql is a log module for Apache which logs all requests to a MySQL database. Use the same password you used when previously configuring the server to accept remote connections. mysql-workbench mysql-server-8.0 tntdb-mysql4v5 default-mysql-server mysql-server-core-8.0 libapache2-mod-log-slow kexi-mysql-driver Use SQL to store/write your Apache queries logs - MySQL interface. If the connection is successful, click “OK” to save the connection.ĭouble-click the new connection to launch the MySQL Workbench SQL Editor. Select “Standard (TCP/IP)” as the “Connection Type”.Įnter your cloud server’s IP address in the “Hostname” field.Ĭlick “Test Connection” to test the connection. Follow these steps:Ĭlick the “+” symbol in the “MySQL Connections” tab to add a new connection.Įnter a name for the connection in the “Connection Name” field. Once your MySQL server is configured to accept remote connections, you can connect to it using MySQL Workbench. To connect to your remote MySQL database server using MySQL Workbench, you have to allow remote connections to the server. NOTE: This section assumes that you have downloaded and installed MySQL Workbench.

The output of the command indicates which database server (MySQL or MariaDB) is used by the installation, and will allow you to identify which guides to follow in our documentation for common database-related operations.

To identify which database server is used in your stack, run the command below: $ test -d /opt/bitnami/mariadb & echo "MariaDB" || echo "MySQL" On account of these changes, the file paths and commands stated in this guide may change depending on whether your Bitnami stack uses MySQL or MariaDB.

It is common practice, for example, for each unique MySQL database on a server to have its own unique user associated with it, such that only one single user has authentication access to one single database and vice-versa.NOTE: We are in the process of modifying the configuration for many Bitnami stacks. In most cases, you’ll be granting privileges to MySQL users based on the particular database that account should have access to. There are a wide range of flags and options available to the command, so you may wish to familiarize yourself with what GRANT can actually do by browsing through the official documentation. The GRANT command is capable of applying a wide variety of privileges, everything from the ability to CREATE tables and databases, read or write FILES, and even SHUTDOWN the server. Now that you are at the mysqlcli prompt, you need only issue the GRANT command with the necessary options to apply the appropriate permissions.
