Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
How big is the database approximately?
did you tried this Unable to copy/back up a database in Plesk: mysqldump: Error 2013: Lost connection to MySQL server during query when dumping table - Support Cases from Plesk Knowledge Base?
[mysqld]
innodb_buffer_pool_size=100M
max_allowed_packet=1024M...
did you really stored this in the right section?
[mysqld]
max_allowed_packet = 2G
what is your commandline for mysqldump ? there are the option --skip-lock-tables
did you restart you mysql / mariadb Server?
and also --skip-extended-insert
it should work via the subscription settings.
Service Plans -> Hosting Plans -> Service Plan Name -> PHP Settings .... PHP-FPM Settings and click on “Update & Sync”.
go to your domain directory /var/www/vhosts/<domain>/ use ls -al to display the directory. There you will see the usernames check whether the directory has the username first "Name" in the display.
ls -al /pathtoyourdomain/
Next, compare the name with the directories where you have “permission...
Increase max_allowed_packet Size: If your query has blob data, this issue can be fixed by increasing the max_allowed_packet size in your my.ini file. By default, this will be 1M (the allowed maximum value is 1024M). If the supplied value is not a multiple of 1024K, it will automatically be...
Did you click both on the left and the second one in the Plesk error message?
The configuration files should be regenerated.
login via SSH and run apt-get update next apt-get upgrade are there any errors?
maybe you need to run:
apt --fix-broken install
never delete plesk packages by doing this.
for really small websites use "ondemand"
for small - middle sized traffic dynamic with
pm.start_servers = 2-4
pm.min_spare_server = 1-2
pm.max_spare_servers = 4-6
it depends really how many websites on your hosting machine and how many traffic they have.
But @Maarten. you should monitor...
1.5x is enough it should work for you 1 GB is really not enough = 48 GB
be careful with PHP-FPM dynamic.
Never start more servers than you have CPU cores, the maximum you can set is the number of threads, which for you is 8 x 2 = 16.
and setup /etc/ningx/nginx.conf
worker_processes 8;
or...
Be careful with MariaDB 80% memory usage of your RAM.
Especially in the midday hours, more traffic can occur on your server and more PHP "workers" can be started, which use up additional RAM.
If the RAM is less than 1 GB, the swap size should be at least the size of the RAM and at most twice the...
this one is more stable because of the usage of swapon -s this exists everywhere @debian.
#!/bin/bash
# Display RAM usage in percent
echo "RAM Usage:"
free | awk '/Mem/{printf("Used: %.2f% \n"), $3/$2*100.0}'
# Display Swap usage in percent
echo "Swap Usage:"
SWAP_TOTAL=$(swapon -s | awk...
Maybe you need a shell-script
#!/bin/bash
# Check if the MariaDB service is running
if systemctl is-active --quiet mariadb
then
echo "MariaDB is running."
else
echo "MariaDB is not running. Restarting MariaDB..."
# Restart MariaDB
systemctl start mariadb
if systemctl...
Domain PHP Configuration: Add the following lines for security reasons:
exposephp = off
servertokens off
Why didn’t Plesk decide to make these lines available as options in Plesk? In my opinion, it’s irrelevant which version I use when it comes to port scanning or Showdan.io. Especially with...
I understand the long term support mindset. Okay, the advantage is of course that Plesk updates it alone.
- MariaDB 11.2.2 Release Notes
- MariaDB 11.0 – new optimizer, new major version series - MariaDB.org
- MariaDB
Would Plesk also update from MariaDB 10.11.x now LTS (Long Term Support) to...