- Stop the
MySQL 8.0service from services - Go to path C:\Program Files\MySQL\MySQL Server 8.0\bin and open
cmd - Run
mysqld --console --skip-grant-tables --shared-memory --defaults-file="C:\ProgramData\MySQL\MySQL Server 8.0\my.ini" - Open new
cmdin the same path - Run following commands
mysql -u rootselect authentication_string,host from mysql.user where user='root';UPDATE mysql.user SET authentication_string='' WHERE user='root';
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| get SSH.NET (BSD License: http://sshnet.codeplex.com/license) | |
| with NuGet: | |
| >Install-Package SSH.NET -Version 2013.4.7 | |
| or just get the dll from here: http://j.mp/sshNet | |
| */ | |
| using System; |