Error HRESULT: 0x80070520 when adding SSL binding in IIS
Error HRESULT: 0x80070520 when adding SSL binding in IIS
Error There was an error while performing this operation
Details:
A specified logon session does not exist. It may alredy have been terminated. (EXception from HRelult: 0x80070520)
you can use the option to generate a certificate:
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt
The key file is just a text file with your private key in it.
If you have a root CA and intermediate certs, then include them as well using multiple -in
params
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt -in intermediate.crt -in rootca.crt
If you're looking for a Windows graphical user interface, check out DigiCert. It is a fairly simple program with an easy interface. On the SSL tab, import the generated certificate. Then, after selecting the Certificate, you can export the file as PFX with or without a key.
https://www.digicert.com/util
This program can also repair a certificate that was uploaded with an error
How to create .pfx file from certificate and private key?
How to create .pfx file from certificate and private key?
1. Open web page -
2. Select Type of Current Certificate
Your certificate should be issued in Standard PEM format. Common PEM extensions include .cer, .crt, and .pem. Make sure Type of Current Certificate is set to “Standard PEM”.
3. Select Type to Convert To
Select “PFX/PKCS#12” as the Type to Convert To.
4. Upload Certificate
Locate Certificate File to Convert and click the Choose File button to upload your certificate. This file should be the certificate that is issued to your web server domain.
5. Upload Private Key
Locate Private Key File and click the Choose File button to upload the file.
6. Upload Chain Certificate Files
Locate Chain Certificate File and click Choose File to upload the CA intermediate certificate. The appropriate certificate depends on what brand of SSL you have, so please make sure you have the correct intermediate certificate before you upload your file.
8. PFX Password
Create a new password for your PFX file. You will need to remember this password when you install the PFX file on your system.
9. Convert Certificate
Once you have uploaded the certificate and key files, click the Convert Certificate button to complete the process and download your new PFX file.
Postgresql – Possible backup corruption using pg_dump only with compress parameter
Postgresql – Possible backup corruption using pg_dump only with compress parameter
the command can be used to backup the database in postgresql
pg_dump -Z 1 db_name > backup
where -Z - compression level
db_name - database name
backup - backup file name
Restoring: psql -U username -d dbname < filename.sql -- For Postgres versions 9.0 or earlier psql -U username -d dbname -1 -f filename.sql or pg_restore -U username -d dbname -1 filename.dump Postgresql – How to pg_restore In your pg_dump, specify the -F t flag. This tells pg_dump to create the backup in tar format
make backup with commang:
pg_dump -U postgres -h /tmp -Ft -b -C mydb > file_db.tar
When I want to restore from backup, i give error.
pg_restore -U postgres -d template1 -v -C < file_db.tar
pg_dump - zrzut bazy do pliku w postgresql
pg_dump manual:
pg_dump zrzuca bazę danych jako plik tekstowy lub do innych formatów.
Składnia:
pg_dump [OPCJA]... [NAZWADB]
Opcje ogólne:
-f, --file=NAZWAPLIKU nazwa pliku lub folderu wyjścia
-F, --format=c|d|t|p format pliku wyjścia (c-użytkownika, d-folder,
t-tar, p-tekstowy (domyślny))
-v, --verbose tryb informacji szczegółowych
-V, --version pokaż informacje o wersji i zakończ
-Z, --compress=0-9 poziom kompresji dla formatów kompresujących
--lock-wait-timeout=LIMITCZASU
niepowodzenie blokowania tabeli po LIMITCZASU
-?, --help pokaż tą pomoc i zakończ działanie
Opcje kontrolujące zawartość wyjścia:
-a, --data-only zrzuca tylko dane, bez schematu
-b, --blobs dodaje duże obiekty do zrzutu
-c, --clean czyszczenie (kasowanie) obiektów baz danych przed odtworzeniem
-C, --create dodaje polecenia tworzenia bazy danych w zrzucie
-E, --encoding=KODOWANIE zrzuca dane w kodowaniu KODOWANIE
-n, --schema=SCHEMAT zrzuca tylko nazwany schemat(y)
-N, --exclude-schema=SCHEMAT
NIE zrzuca nazwanych schematów
-o, --oids dodaje OIDy do zrzutu
-O, --no-owner pomija odtworzenie wskazania właściciela obiektu
w formacie tekstowym
-s, --schema-only zrzuca tylko schemat, bez danych
-S, --superuser=NAZWA nazwa superużytkownika używana w formacie tekstowym
-t, --table=TABELA zrzuca tylko tabelę wedle nazwy
-T, --exclude-table=TABELA NIE zrzuca tabeli o tej nazwie
-x, --no-privileges nie zrzuca przywilejów (grant/revoke)
--binary-upgrade używane tylko przez narzędzia aktualizacji
--column-inserts zrzuca dane jako polecenia INSERT z nazwami kolumn
--disable-dollar-quoting blokuje cytowanie dolarem, używa standardowego cytowania SQL
--disable-triggers wyłącza wyzwalacze podczas odtwarzania wyłącznie danych
---exclude-table-data=TABELA NIE zrzuca danych tabeli o tej nazwie
--inserts zrzuca dane jako polecenia INSERT zamiast COPY
--no-security-labels nie zrzuca przypisań etykiet bezpieczeństwa
--no-tablespaces nie zrzuca przypisań do przestrzeni tabel
--no-unlogged-table-data nie zrzuca niezalogowanych danych tabeli
--quote-all-identifiers cytuje wszystkie identyfikatory, jeśli tylko
nie są to słowa kluczowe
--section=SECTION zrzuca nazwaną sekcję (pre-dane, dane, lub post-dane)
--serializable-deferrable czeka póki zrzut wykonuje się
bez nieprawidłowości
--use-set-session-authorization
używa poleceń SET SESSION AUTHORIZATION zamiast
poleceń ALTER OWNER by ustawić właściciela
Opcje połączenia:
-h, --host=NAZWAHOSTA host serwera bazy danych lub katalog gniazda
-p, --port=PORT numer portu na serwera bazy dnaych
-U, --username=NAZWA połączenie jako wskazany użytkownik bazy
-w, --no-password nie pytaj nigdy o hasło
-W, --password wymuś pytanie o hasło (powinno nastąpić automatycznie)
--role=NAZWAROLI wykonuje SET ROLE przed odtworzeniem
Jeśli nie dostarczono nazwy bazy danych, używana jest zmienna
środowiskowa PGDATABASE.
Błędy proszę przesyłać na adres <Ten adres pocztowy jest chroniony przed spamowaniem. Aby go zobaczyć, konieczne jest włączenie w przeglądarce obsługi JavaScript.;.