it seems you can set it by the command line until the server restart
runagent -m lamp1 podman exec -ti lamp-app bash
mysql
MariaDB [(none)]> show variables like 'max_allowed_packet';
+--------------------+----------+
| Variable_name | Value |
+--------------------+----------+
| max_allowed_packet | 16777216 |
+--------------------+----------+
1 row in set (0.001 sec)
MariaDB [(none)]> SET GLOBAL max_allowed_packet=1073741824;
root@lamp:/# tar
tar: You must specify one of the '-Acdtrux', '--delete' or '--test-label' options
Try 'tar --help' or 'tar --usage' for more information.
I believe the mechanism of being able to have customizable and survivable settings outside containers is of huge value! I opt for this to be availabe with all app in a âNS wayâ that also respects all backup methods!
Not only does it provides customizable setting, it also reduces the need (and risc) to access containers themselves. Gives me a nostalgic feeling re good old on âdb configuration setâŠâ
How to disable and enable phpmyadmin access pls? After installing and testing an webapp, I would like to disable phpmyadmin access completely, as if it does not exist, 404 error., obviously to tighten security.
And sometimes it needs to be enable to do some work.
Preferably a âswitchâ like setting/command outside of the container, maybe in settings of the lamp1 instance?
Upgraded from 1.0.4 to 1.0.5, but no option in advanced settings. Also, I never touched the mysql password and left it as default Nethesis,1234. Now I can not change that. How can I?
At the same time, would it be an idea to also have an option to enable (disabled by default) phpinfo page by means of a symbolic link on/off? Off by default for security ofcourse.