i have to make backups of mysql database in my application.
I run the command in Windows and works nice. This is the command:
String executeCmd = mysqldumppath +" -u " + dbUserName + " -p" + dbPassword + " --add-drop-database -B " + dbName + " -r " + filePath;
Runtime.getRuntime().exec(executeCmd);
When i try this command on my linux server, i need to put a sudo password. How i pass password in the command line?
I had read many solutions but no success.
java MyClass.