Reputation: 1
Xampp not connecting to DBForge what to do?
I clicked on xampp mysql start and opened dbforge then i clicked to new connection in dbforge but the user and root did not popped up only that window what i attached here as a dbforge picture. I use win 10 OS, vscode, vuejs3, laravel10, git etc etc, just reinstalled OS and reinstalled all the programs and extensions, that took a while believe me, everything worked now i'm stuck here.
What i only tried was to refresh, delete localhosts..... then went to search to google. Thanks in advance:)
Upvotes: 0
Views: 53
Reputation: 1
My answer after i checked what ports used in CMD : netstat -anob -- to list all established and listening ports. netstat -anoq -- to list all bound ports (= reserved ports) Then in powershell : Get-NetTCPConnection -State Bound | ForEach-Object {$p = (Get-Process -Id $.OwningProcess);New-Object -TypeName psobject -Property @{ "LocalPort" = $.LocalPort; "PID" = $p.Id; "ProcessName" = $p.Name; }} | Format-Table -AutoSize -Property PID, ProcessName, LocalPort -- to see the ports in a more "organized" view.
Then i have found out i opened DBForge for SQL server instead of DBForge for MySQL, i closed DBForge for SQL server and i opened DBForge for MySQL then everything works fine. Just a blatant mistake (as usual).
If you check the top left corner on the DBForge pictures you can see the first one has purple icon (DBForge for SQL server) and the second one has blue icon (DBForge for MySQL).
Upvotes: 0