vote up 1 vote down star

This, when run from the "run" window , works properly.

cmd.exe /K mysqldump --add-drop-database --add-drop-table --user=root --password=thepassword --databases theDatabase > C:\Backup\theBackup.sql

However, the same command, when I try to execute from my web application by calling an external process, fails.

Here's the code:

ProcessStartInfo processInfo = new ProcessStartInfo("cmd.exe", @"/K mysqldump --add-drop-database --add-drop-table --user=root --password=thepassword --databases theDatabase > C:\Backup\theBackup" + ".sql");

Process p = Process.Start(processInfo);

This is what I get...

alt text

Interestingly, the file - theBackup.sql - gets created, but is empty.

It isn't an environment PATH variable problem; the MySql bin directory path, which contains mysqldump is added into the environment PATH variable. To check this, if I open the command prompt, navigate to the path mentioned in the screenshot above and type mysqldump command manually, it recognizes the command...as shown below...

alt text

The problem is mysqldump specific, since the following piece of code works

ProcessStartInfo processInfo = new ProcessStartInfo("cmd.exe", "/K ping stackoverflow.com");

What's wrong here?

flag

70% accept rate

1 Answer

vote up 1 vote down check

my guess would be that the $PATH variable isn't defined to include the path to MySQL in the environment that ASP.NET is running in (either for the that user, or ASP.NET cleans out the environment).

Two things to try:

  1. (might work) Make sure the mysql directory is added to the global path -- not just the user-specific PATH variable. (note: this will require at least recycling IIS, maybe a reboot to take effect)
  2. Use the fully-qualified path to mysqldump (you will need to do something to quote or escape any spaces in the path).
link|flag
neither worked :-( – SaM May 16 at 17:39
Did you make sure you quoted the path or otherwise escaped any spaces in it? (just added that to the answer) – Jonathan May 16 at 18:31
worked with the fully qualified path - with escaping spaces :-) thanks. – SaM May 18 at 6:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.