When you have got ClusterControl installed, you can upload package under Software Packages and prepare for software upgrade in all active database nodes.
However, you may have to prepare and tweak your setup, and allow for 512MB files.
Setup php.ini to allow upload of files larger than 2MB
Apache/PHP disallows upload of files larger than 2MB. To fix this you have to:
Ubuntu/Debian:
sudo EDITOR /etc/php5/apache2/php.ini
Centos/Redhat:
sudo EDITOR /etc/php.ini
*EDITOR = use your favorite editor like vi, nano or emacs.
Change the following (for any OS):
...
post_max_size = 8M ...
upload_max_filesize = 2M
...
to
....
post_max_size = 512M
... upload_max_filesize = 512M
...
Now your upload file size limit will be 512M.
If you have big dump files, more than 512M, you should upload the dumpfile to the server and load it in using the mysql client..
Save and exit, and finally restart apache:
Ubuntu/Debian:
sudo service apache2 restart
Centos/Redhat:
sudo service httpd restart
Comments
0 comments
Please sign in to leave a comment.