How can I export MySQL database manually - without phpmyadmin
My phpmyadmin doesn't work. I see only white blank page when I open it (it has some issue),
However, I'd like to export my project database manually to another computer.
I saw all my databases inside /var/lib/mysql
and when i run
mysqldump -u username -p databasename > backup.sql
using mysqldump
for backing-up, it freezes up and does nothing
Is there any another way by which I can export my database?
I have always used mysqldump -u username -p databasename > backup.sql
with no issues.