hi all,
I have not come to install the openemm :
i installed python 2.5
i installed jdk 6 for java
mysql_python
mysql is already installed with easyphp
when i start the file setup.bat , i have this error :
en français :
'mysqladmin' n'est pas reconnue en tant que commande interne ou externe
that's mean mysqladmin no exists.
sombody help me
1thanks
problem with installation -mysqladmin-
Moderator: moderator
Re: problem with installation -mysqladmin-
Also note that setup.bat (openemm.py really) does not use the Windows PATH but rather reads hardcoded values from the registry to form a local path used by the install program.
I found this out while trying if OpenEMM would install easily with MySQL Community Server v5.1 rather than v5.0. This is not the case because of the following in openemm.py:
I did have v5.1 mysqladmin in PATH (verified in a command shell, also tried using short DOS-names like "~1" to see if spaces in the MySQL program path was the problem).
Instead of trying to fix openemm.py (since there might be other incompatibilities) I reverted MySQL Community Server to v5.0 which works without a problem. And yes, I know the documentation says 5.0 - this was just a quick test.
I found this out while trying if OpenEMM would install easily with MySQL Community Server v5.1 rather than v5.0. This is not the case because of the following in openemm.py:
Code: Select all
# find mysql
mskey = r'SOFTWARE\MySQL AB\MySQL Server 5.0'
mysqlhome = agn.winregFind (mskey, 'Location')
if not mysqlhome is None:
addpath (mysqlhome + os.path.sep + 'bin')
Instead of trying to fix openemm.py (since there might be other incompatibilities) I reverted MySQL Community Server to v5.0 which works without a problem. And yes, I know the documentation says 5.0 - this was just a quick test.

MYsqla dmin not recognized
I'm trying to install the latest version of this software. I already have mysql 5.1 configured and all software installed. But I keep getting the message mysqladmin not recognised. Where should I setup the PATH to crrect this?
-
- Posts: 3
- Joined: Fri Apr 12, 2013 10:16 pm
Re: problem with installation -mysqladmin-
I had the same problem,
Here is what I did to fix it
run regedit
navigate to HKEY_USERS
navigate to user id (usually a string such as S-1-5-21-##########-##########-##########-####)
navigate to software
navigate to MySQL AB
navigate to MySQL Server 5.x
insert new string value (right click > new > string value)
name new string value "location"
modify new string value ( right click on "location" > select modify... )
enter path to MySQL Server 5.x\bin
mine was C:\Program Files\MySQL\MySQL Server 5.6\bin
click ok
go back to openemm and run setup.bat
worked for me.
this was pretty frustrating until I discovered that setup.bat doesn't use the windows environment path, instead it uses the registry setting, my installation of MySQL didn't put the location in the registry setting, so I had to manually enter it using the steps above. Hope this helps all those who run into the same problem on a windows install of OpenEMM...
Here is what I did to fix it
run regedit
navigate to HKEY_USERS
navigate to user id (usually a string such as S-1-5-21-##########-##########-##########-####)
navigate to software
navigate to MySQL AB
navigate to MySQL Server 5.x
insert new string value (right click > new > string value)
name new string value "location"
modify new string value ( right click on "location" > select modify... )
enter path to MySQL Server 5.x\bin
mine was C:\Program Files\MySQL\MySQL Server 5.6\bin
click ok
go back to openemm and run setup.bat
worked for me.
this was pretty frustrating until I discovered that setup.bat doesn't use the windows environment path, instead it uses the registry setting, my installation of MySQL didn't put the location in the registry setting, so I had to manually enter it using the steps above. Hope this helps all those who run into the same problem on a windows install of OpenEMM...