

replace matomo by your chosen MySQL username (or simply use matomo).Syntax: Create Database Query: CREATE DATABASE gfgdb Use Database Query: USE gfgdb. We are going to do this with the help of CREATE DATABASE query.
#Create database mysql how to#
replace my-strong-password-here by a strong secure password. We are going to see how to create and use mysql database in nodejs.replace matomo_db_name_here with the name of your MySQL database (if possible, this database should only have the Matomo tables installed).(OPTIONAL) Grant this user matomo the FILE global privilege: (if enabled, reports will be archived faster thanks to the LOAD DATA INFILE feature) $ mysql> GRANT FILE ON *.* TO these instructions:

Grant this user matomo the permission to access your matomo_db_name_here database $ mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, INDEX, DROP, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON matomo_db_name_here.* TO is important to grant the user the following privileges: SELECT, INSERT, UPDATE, DELETE, CREATE, INDEX, DROP, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES Or if you are using an older version such as MySQL 5.1, MySQL 5.5, MySQL 5.6: $ mysql> CREATE USER IDENTIFIED BY 'my-strong-password-here' If you are installing Matomo (Piwik) on your own server and/or don’t have a tool available to manage your database, you can manually create the MySQL database user by following these steps:Ĭreate a database for Matomo: $ mysql> CREATE DATABASE matomo_db_name_here Ĭreate a user called matomo, if you are using MySQL 5.7 or MySQL 8 or newer: $ mysql> CREATE USER IDENTIFIED WITH mysql_native_password BY 'my-strong-password-here' Set Up a MySQL Database on Windows Close the mysql command-line tool: quit In the Windows Command Prompt, run the following command: mysql -u userName -p -v. To create your database and database user, you would typically use your web hosting provider interface which would let you add a new MySQL database and create a new user with permission to access this database, in just a few clicks. When installing Matomo you need to specify a MySQL (or MariaDB) database hostname, user and password.
