You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-15 01:04:37 +02:00
Add hint to check SFTP authorization log.
In the case of authorization failures there many be valuable information in the log.
This commit is contained in:
@ -76,6 +76,19 @@
|
||||
|
||||
<p>Allow alternative WAL segment sizes for PostgreSQL &le; 10.</p>
|
||||
</release-item>
|
||||
|
||||
<release-item>
|
||||
<github-issue id="2381"/>
|
||||
<github-pull-request id="2385"/>
|
||||
|
||||
<release-item-contributor-list>
|
||||
<release-item-contributor id="vitalii.zurian"/>
|
||||
<release-item-reviewer id="reid.thompson"/>
|
||||
<release-item-reviewer id="david.steele"/>
|
||||
</release-item-contributor-list>
|
||||
|
||||
<p>Add hint to check <proper>SFTP</proper> authorization log.</p>
|
||||
</release-item>
|
||||
</release-improvement-list>
|
||||
</release-core-list>
|
||||
</release>
|
||||
|
@ -1073,6 +1073,11 @@
|
||||
<contributor-id type="github">ViperRu</contributor-id>
|
||||
</contributor>
|
||||
|
||||
<contributor id="vitalii.zurian">
|
||||
<contributor-name-display>Vitalii Zurian</contributor-name-display>
|
||||
<contributor-id type="github">thecatontheflat</contributor-id>
|
||||
</contributor>
|
||||
|
||||
<contributor id="vitaliy.kukharik">
|
||||
<contributor-name-display>Vitaliy Kukharik</contributor-name-display>
|
||||
<contributor-id type="github">vitabaks</contributor-id>
|
||||
|
@ -1343,7 +1343,8 @@ storageSftpNew(
|
||||
"HINT: libssh2 compiled against non-openssl libraries requires --repo-sftp-private-key-file and"
|
||||
" --repo-sftp-public-key-file to be provided\n"
|
||||
"HINT: libssh2 versions before 1.9.0 expect a PEM format keypair, try ssh-keygen -m PEM -t rsa -P \"\" to"
|
||||
" generate the keypair"));
|
||||
" generate the keypair\n"
|
||||
"HINT: check authorization log on the SFTP server"));
|
||||
}
|
||||
|
||||
// Init the sftp session
|
||||
|
@ -240,7 +240,8 @@ testRun(void)
|
||||
"HINT: libssh2 compiled against non-openssl libraries requires --repo-sftp-private-key-file and"
|
||||
" --repo-sftp-public-key-file to be provided\n"
|
||||
"HINT: libssh2 versions before 1.9.0 expect a PEM format keypair, try ssh-keygen -m PEM -t rsa -P \"\" to generate the"
|
||||
" keypair");
|
||||
" keypair\n"
|
||||
"HINT: check authorization log on the SFTP server");
|
||||
|
||||
// -------------------------------------------------------------------------------------------------------------------------
|
||||
TEST_TITLE("fingerprint mismatch");
|
||||
@ -586,7 +587,8 @@ testRun(void)
|
||||
"HINT: libssh2 compiled against non-openssl libraries requires --repo-sftp-private-key-file and"
|
||||
" --repo-sftp-public-key-file to be provided\n"
|
||||
"HINT: libssh2 versions before 1.9.0 expect a PEM format keypair, try ssh-keygen -m PEM -t rsa -P \"\" to generate the"
|
||||
" keypair");
|
||||
" keypair\n"
|
||||
"HINT: check authorization log on the SFTP server");
|
||||
TEST_RESULT_BOOL(
|
||||
unsetenv("PGBACKREST_REPO1_SFTP_PRIVATE_KEY_PASSPHRASE"), 0, "unset PGBACKREST_REPO1_SFTP_PRIVATE_KEY_PASSPHRASE");
|
||||
|
||||
@ -2036,7 +2038,8 @@ testRun(void)
|
||||
"HINT: libssh2 compiled against non-openssl libraries requires --repo-sftp-private-key-file and"
|
||||
" --repo-sftp-public-key-file to be provided\n"
|
||||
"HINT: libssh2 versions before 1.9.0 expect a PEM format keypair, try ssh-keygen -m PEM -t rsa -P \"\" to generate the"
|
||||
" keypair");
|
||||
" keypair\n"
|
||||
"HINT: check authorization log on the SFTP server");
|
||||
|
||||
TEST_RESULT_BOOL(
|
||||
unsetenv("PGBACKREST_REPO1_SFTP_PRIVATE_KEY_PASSPHRASE"), 0, "unset PGBACKREST_REPO1_SFTP_PRIVATE_KEY_PASSPHRASE");
|
||||
|
Reference in New Issue
Block a user