I'm trying to import a database using Ubuntu Terminal (~260MB) into MySQL and I believe it's timing out and only importing half of the data and dropping me to prompt because of it's size. I've tried:
php.inimax_execution_time = 600
post_max_size=512M
upload_max_filesize=512M
memory_limit=512M
- config.inc.php
$cfg['ExecTimeLimit'] = 0;
- my.cnf
- max_allowed_packet=512M
Command used: mysql -u root database_name < dump.sql
edit: As others have mentioned, PHP configs were striked because they aren't relevant as I'm using the terminal.