I am getting an error with the Wordpress WP-DBManager Plugin:
MYSQL dump path does NOT exist. Please check your mysqldump path under DB Options.
If uncertain, contact your server administrator.
MYSQL path does NOT exist. Please check your mysql path under DB Options.
If uncertain, contact your server administrator.
IT Server administrator doesn't know what to do. So I have referred to this article.
I am running AWS, Ubuntu LAMP stack - mysql 5.6, php7.0
I have checked /usr/bin
and no mysqldump
or mysql
folder.
In the php.ini
file there is this line ;open_basedir =
Do I create mysqldump
and mysql
folders? And set open_basedir
to open_basedir = /usr/bin/
?
Or based on that article there were modules to add - <IfModule sapi_apache2.c>
. I could not find the httpd.conf
file. Where would I find this file? Or do I create the file?
which mysql
(alsolocate mysql
orwhereis mysql
) to find it.mysqldump
is a part ofmysql-client
package:sudo apt install mysql-client
/sudo apt install mysql-client-5.6
./usr/bin
if you don't know what exactly doing.httpd.conf
is the file/etc/apache2/apache2.conf
.Try: sudo apt-get install
– RRowan Mar 28 '17 at 22:29sudo apt install mysql-client
! – RRowan Mar 29 '17 at 00:03