MySQL Workbench acquire access for administration?
Asked Answered
M

10

5

I run MySQL 5.6 since month and everything went well. Also the MySQL Workbench 6.

I receive two errors if I would like to see the "Server Status".

1st error:

Could not acquire management access for admionistration
RuntimeError: Unable to execute comand chcp. Please make shure that
C:\Windows\System32 directory is in your PATH environment variable.

I checked the windows path variable within Win7 and there exist an entry c:\windows\system32

2nd error:

Unable exception: Current profile has no WMI enable

Any ideas?

Mahatma answered 28/11, 2013 at 12:37 Comment(0)
G
11

To resolve the issue, simply click on Manage Server Instances under Server Administration column and close the screen again. Now click on the instance again, check if the issue is fixed or report any bug.

Gigi answered 4/2, 2014 at 2:50 Comment(4)
Solved, software things ;-)Carrack
I see this is a few months old, still... I couldn't find that option in the Ubuntu version of Workbench. Would anyone know the equivalent command? Thanks.Euchromosome
Can anyone confirm is this option is there in workbench version 6.3.6 and later? I cannot seem to find it.Vitalis
I am getting this error on v8.0.22 and I can't find Manage Server Instances under Server AdministrationSufflate
C
7

I thought your MYSQl Service is not yet start. Please Follow the below steps It works me like a charm.
windows + R - Type services.msc Press 'Enter' you could see many services . There is a service called MYSQl56 service if it's Disabled please Start that Service then once again restart the workbench.

Calicle answered 26/8, 2015 at 6:0 Comment(2)
i have problem while starting this service . dialogue box appears and it says mysql57 on local computer started and then stopedDismuke
There is no "MYSQl56 service".Chamberlain
I
2

For those who are still facing issue, add "C:\Windows\System32" in "path" Environmental Variable and make sure "MySQL56" service is running.

Indorse answered 26/4, 2016 at 8:28 Comment(0)
C
1

I follow those steps:

  1. I started MySQL80 in Services.
  2. Changed Server -> Management Access Settings -> System Profile, from Windows to Linux so then I entered into Server Status and refreshed.

I hope that can to help anybody.

Crissie answered 19/8, 2021 at 13:3 Comment(0)
C
0

If you got below error when click on Manage Import / Export option

manageserverinstances 0

Previously asked question Backup of mysql DB not being created is answered Exception: Current profile has no WMI enabled

Courier answered 24/2, 2014 at 12:51 Comment(0)
T
0

I encountered this issue when trying to install my first mySQL server.

When configuring Remote Management, I overlooked the operating system setting for my server. I was using Windows but the default was set to FreeBSD. Once I changed the server OS setting to Windows, the problem went away.

Toxicology answered 16/7, 2014 at 15:11 Comment(0)
C
0

I just encountered exactly the same problem - read lots of suggestions but solutions didn't work for me (I can't un-install MySQL and re-install it on a live server)... ...my resolution, and what worked for me, was to copy chcp.com from C:\Windows\System32\ to C:\Windows\SysWOW64\ I guess it's a path problem between a 32bit version of MySQL/Workbench and the 64bit OS

Cantillate answered 28/4, 2015 at 14:44 Comment(0)
H
0

I got the same problem after restarting my pc and solved it by just starting wampserver! so the solution is: 1. start wampserver- make sure apache,mysql are running and put all services online. 2.try to reconnect to the database!

Histochemistry answered 12/8, 2015 at 8:17 Comment(0)
D
0

Funnily enough, mine didn't work after the solution given by @mohit, and I'd rather not restart the computer as a work around as some has suggested.

After doing some digging around, I found that the mysql server service was not running

Task Manager --> Services --> [mysqlxx] right click and click start if not running. Note that. Note that [mysqlxx] could be a different format or name where xx are numbers

Drupe answered 21/8, 2015 at 3:13 Comment(0)
F
0

i solved it installing the latest version of MySQL Workbench and server then I changed the line process = subprocess.Popen(command, stdin = subprocess.PIPE, encoding="utf-8", stdout = subprocess.PIPE, stderr = subprocess.STDOUT, shell=True) on C:\Program Files\MySQL\MySQL Workbench 8.0\workbench\os_utils to process = subprocess.Popen(command, stdin = subprocess.PIPE, encoding="ansi", stdout = subprocess.PIPE, stderr = subprocess.STDOUT, shell=True) Looks like working :D

Forte answered 16/10, 2023 at 13:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.