Skip to content

Commit

Permalink
Database: choose mysql_native_password
Browse files Browse the repository at this point in the history
Fix fc3e6a8

Refs: #13576
  • Loading branch information
Bill Meek committed Feb 13, 2020
1 parent 1c0b76b commit 12706da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/database/mc.sql
@@ -1,6 +1,6 @@
CREATE DATABASE IF NOT EXISTS mythconverg;
CREATE USER IF NOT EXISTS 'mythtv'@'localhost' IDENTIFIED BY 'mythtv';
ALTER USER 'mythtv'@'localhost' IDENTIFIED WITH mysql_native_password;
CREATE USER IF NOT EXISTS 'mythtv'@'localhost' IDENTIFIED WITH mysql_native_password;
ALTER USER 'mythtv'@'localhost' IDENTIFIED BY 'mythtv';
GRANT ALL ON mythconverg.* TO mythtv@localhost;
FLUSH PRIVILEGES;
GRANT CREATE TEMPORARY TABLES ON mythconverg.* TO mythtv@localhost;
Expand Down

0 comments on commit 12706da

Please sign in to comment.