Перейти до основного вмісту

Публікації

Remmina не підключається до RDP Windows Server 2019

Робочим варантом виявилось You have to change the Security to "TLS" in the Advanced tab of your connection, and everything works fine! Пораду знайшов тут https://unix.stackexchange.com/questions/445613/cant-connect-to-remote-server-using-rdp-remmina-after-upgrade

Додавання нового тому та міграція у Proxmox

Додавання нового тому https://opentechtips.com/how-to-add-extra-storage-to-proxmox/   Міграція VM на інший том https://ostechnix.com/move-proxmox-containers-vms-to-different-disk/

Ручна перевірка SMTP/POP3/IMAP сервера

Перевірка SMTP https://learn.microsoft.com/en-us/exchange/mail-flow/test-smtp-telnet?view=exchserver-2019 Перевірка SMTP з AUTH https://www.ndchost.com/wiki/mail/test-smtp-auth-telnet   Перевірка POP3 https://mivilisnet.wordpress.com/2016/04/27/manual-test-for-the-pop3-connection/ Перевірка IMAP https://www.mailenable.com/kb/content/article.asp?ID=ME020711 Перевірка SSL  в POP3/IMAP/SMTP https://support.plesk.com/hc/en-us/articles/213961665-How-to-verify-that-SSL-for-IMAP-POP3-SMTP-works-and-a-proper-SSL-certificate-is-in-use

Міграція сервера IredMail на інший сервер

Поради щодо міграції Migrate old iRedMail server to the latest stable release https://docs.iredmail.org/migrate.to.new.iredmail.server.html Backup and restore https://docs.iredmail.org/backup.restore.html Locations of configuration and log files of major components https://docs.iredmail.org/file.locations.html#openldap Перенести теки з листами на новий сервер можна наступним чином sudo scp -P 2210 -r -p /var/vmail/vmail1/domain.ua/ root@xxx.xxx.xxx.xxx:/root/vmail.old/   де ключі -P 2210 порт ssh нового сервера -r разом з вкладеними теками -p збереження часу/дати файлів

Видалення LCX у Proxmox

  Check the vm config file via shell maybe the storage disk is still referenced there. If so delete the line and hopefully you can just delete is via GUI. The file path is /etc/pve/qemu-server/<VMID>. If that doesn't help removing the storage and vm config via ssh should remove it from the web gui but idk if you're leaving stuff behind if you do that. https://forum.proxmox.com/threads/how-to-force-remove-container.105341/

Надсилання пошти з CentOS

У CentOS 8 для надсилання пошти потрібно встановити yum install mailx І також yum install postfix Пораду знайшов тут https://serverfault.com/questions/194376/how-to-send-email-with-my-centos-serve r Але при намаганні відправити пошту з консолі, отримуємо помилку "fatal: parameter inet_interfaces: no local interface found for ::1" Для виправлення потрібно у /etc/postfix/main.cf Замість #inet_interfaces = all #inet_interfaces = $myhostname #inet_interfaces = $myhostname, localhost inet_interfaces = localhost   Вказати inet_interfaces = all Пораду знайшов тут https://serverok.in/postfix-no-local-interface-found А щоб заборонити Pv6 на сервері потрібно у /etc/hosts закоментувати ::1   Пораду знайшов тут https://nixhive.com/fatal-parameter-inet_interfaces-no-local-interface-found-for-1/