Guest User

Untitled

a guest
Oct 30th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. dbc_dbport='0'
  2.  
  3. sudo dpkg-reconfigure phpmyadmin
  4.  
  5. sudo service mysql stop
  6. sudo mysqld --skip-grant-tables &
  7. mysql -uroot mysql
  8.  
  9. UPDATE user SET password = PASSWORD('YOURPASSWORD')
  10. WHERE user = 'root';
  11. FLUSH PRIVILEGES;
  12.  
  13. sudo service mysql restart
Add Comment
Please, Sign In to add comment