Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In order to add new.user@gmail.com to group of Plugin Portal administrators you need to set admin flag to 1 in user table. This operation needs to be done as pluginportal user. The password for MySQL can be found in /space/pp3/config/autoload/doctrine.local.php file.

Code Block
languagebashsql
themeMidnight
mysql -h 172.31.28.116 -p -u netbeans_pluginportal netbeans_pluginportal
update user set admin=1 where email="new.user@gmail.com";

...