Grigoriy Ovechkin
My feedback
-
1 vote
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.—
IGGrigoriy Ovechkin shared this idea ·
-
29 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin supported this idea ·
-
19 votes
Thank you for your input! We will consider this functionality for the upcoming releases if it becomes popular enough.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea ·
-
22 votes
Thank you for your input! We will consider this functionality in upcoming releases, if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea ·
-
3 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea ·
-
72 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
— AY
Grigoriy Ovechkin shared this idea ·
-
7 votesopen discussion · 6 comments · Feature Suggestions » Backup / Restore · Flag idea as inappropriate… · Admin →
An error occurred while saving the comment An error occurred while saving the comment Grigoriy Ovechkin commented
Add possibility to Backup mysql databases with "--skip-lock-tables" option.
Grigoriy Ovechkin supported this idea ·
-
5 votes
An error occurred while saving the comment Grigoriy Ovechkin commented
Add this feature.
Grigoriy Ovechkin shared this idea ·
-
159 votes
Thank you for your input! We are planning to implement this functionality in upcoming releases. The request is registered as: PPM-2517
Everyone, please continue voting for this feature if you consider it important.
— ES
Grigoriy Ovechkin supported this idea ·
-
17 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGAn error occurred while saving the comment Grigoriy Ovechkin commented
Please change DNS to DSN.
Grigoriy Ovechkin shared this idea ·
-
167 votes
Thank you for your input! We will consider this functionality in upcoming releases, if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
— ES
Grigoriy Ovechkin supported this idea ·
-
81 votesopen discussion · 13 comments · Feature Suggestions » Plesk (general) · Flag idea as inappropriate… · Admin →
Grigoriy Ovechkin supported this idea ·
-
26 votes
Thank you for your input! We will consider support PostgreSQL in Plesk for Windows in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin supported this idea ·
-
24 votes
Grigoriy Ovechkin supported this idea ·
There is a workaround:
# cat /usr/local/psa/PMM/agents/shared/Db/MysqlShellBackend.pm
...
$cmd .= " --socket='$self->{socket}'" if $self->{socket};
$cmd .= " -h '$self->{host}'" if $self->{host};
$cmd .= " -u '$self->{user}'";
$cmd .= " -P '$self->{port}'" if $self->{port};
if (index($cmd, AgentConfig::mysqldumpBin()) != -1) {
$cmd .= " --skip-lock-tables";
}
$cmd .= " $additionalOptions" if $additionalOptions;
...