Hi, I'm Canan
Oups ...
Never forget impossible is possible
:(
Your PC ran into a problem and needs to restart.
We're just collecting some error info, and then we'll restart for you.
0% complete
For more information about this issue and possible fixes, visit
https://www.windows.com/stopcode
If you call a support person, give them this info:
Stop code: SYSTEM_SERVICE_EXCEPTION
Correct MySQL error 1045
Wamp
Steps
- Edit your "/etc/mysql/mysql.conf.d/mysqld.cnf" file
[mysqld]
bind-address = 0.0.0.0
- Connect yourself with SSH
- Connect yourself on your MySQL
mysql -u root -p__YOUR_PASSWORD__ mysql
- Grant access from any IP to your user
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '__YOUR_PASSWORD__' with grant option;
- Update your rights
FLUSH PRIVILEGES;
- > If needed, restart your MySQL service