Skip to content

Commit

Permalink
Add newer SYSTEM_USER privelege for views - closes #865
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo authored Jul 5, 2023
1 parent 87e158b commit b5d596c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/installers/ubuntu-lts-2004-ixp-manager-v6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ CREATE USER IF NOT EXISTS \`${DBUSER}\`@\`127.0.0.1\` IDENTIFIED BY '${MYSQL_IXP
CREATE USER IF NOT EXISTS \`${DBUSER}\`@\`localhost\` IDENTIFIED BY '${MYSQL_IXPM_PW}';
GRANT ALL ON \`${DBNAME}\`.* TO \`${DBUSER}\`@\`127.0.0.1\`;
GRANT ALL ON \`${DBNAME}\`.* TO \`${DBUSER}\`@\`localhost\`;
GRANT SUPER ON *.* TO \`${DBUSER}\`@\`127.0.0.1\`;
GRANT SUPER ON *.* TO \`${DBUSER}\`@\`localhost\`;
GRANT SYSTEM_USER, SUPER ON *.* TO \`${DBUSER}\`@\`127.0.0.1\`;
GRANT SYSTEM_USER, SUPER ON *.* TO \`${DBUSER}\`@\`localhost\`;
FLUSH PRIVILEGES;
END_SQL
echo '[done]'
Expand Down

0 comments on commit b5d596c

Please sign in to comment.