Grigoriy Ovechkin
My feedback
12 results found
-
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 ·
-
47 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 ·
-
21 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 ·
-
81 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 ·
-
9 votes
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 ·
-
181 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 ·
-
18 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 ·
-
179 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 ·
-
85 votes
Grigoriy Ovechkin supported this idea ·
-
41 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 ·
-
36 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;
...