分类 电脑 下的文章

proxmox - debian 10 - 重启系统后无法连接 - auto - allow-hotplug

问题:在debian 10系统上安装proxmox,在创建linux bridge网络后重启机子,机子失联。

尝试:在proxmox管理界面创建linux bridge后,会自动更改/etc/network/interface的配置内容,如删除原网卡的allow-hotplug。如果这时没有将相应的网卡设置为自动启动autostart,那么重启机子后,机子会断网。

解决:将相应的网卡设置为自动启动(autostart)。

-# The loopback network interface
 auto lo
 iface lo inet loopback
 
-# The primary network interface
-allow-hotplug eno1
 iface eno1 inet static

proxmox-network-1.png

参考:

magento2.4 网站后台 禁用手机验证2FA功能 - Magento_TwoFactorAuth

问题:通过 compose 安装了新版本的 magento 2.4.1,首次登录站点后台,提示:You need to configure Two-Factor Authorization in order to proceed to your store's admin area

尝试:可通过magento的管理工具来禁用该模块 bin/magento module:disable Magento_TwoFactorAuth 。新版本的 magento ,如 2.4.6 ,需要执行 bin/magento module:disable Magento_TwoFactorAuth Magento_AdminAdobeImsTwoFactorAuth

参考:https://github.com/magento/magento2/issues/29312

Windows 10 从19xx自动更新到 20H2

之前,时不时提示因为某个原因,更新没有成功安装。打开提示信息对话框,原来是说VMware Player不兼容,需要卸载。我都忘记这个VMware Player具体是什么版本,好久没使用了。卸载VMware Player后,在日常使用截图保存图片时,发现常保存的一个路径提示不存在,联想到之前有人反馈Windows更新会让某些目录不可以访问,我就由得它,等等再说。隔天,图片的路径果然可以访问了,文件没丢。如果每次只是点击“关机”的话,Windows不会更新的。选择“更新并重启”会安装更新,好像花了三十分钟左右,安装了更新,桌面默认的壁纸从原先的深蓝变成了天蓝。

dn_vm-player-1.png

postfix - smtps - 拒绝从邮件客户端发信 - HELO command rejected: need fully-qualified hostname

问题:配置了tls的postfix,dovecot。邮件客户端雷鸟能正常通过587端口发信,但foxmail使用465端口发信时提示拒绝。如,reject: RCPT from unknown[]: 504 5.5.2 : Helo command rejected: need fully-qualified hostname

尝试:可以在postfix中配置文件main.cf中,先允许通过sasl验证过的用户发信,如:mua_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_non_fqdn_hostname, reject_invalid_hostname, permit

参考:https://serverfault.com/questions/499672/noqueue-reject-helo-command-rejected-need-fully-qualified-hostname/499811

postfix与外部邮件服务器连接时使用tls - did not encrypt this message - smtp_tls_security_level

问题:debian上的postfix发信给gmail用户,显示 security domain did not encrypt this message。

尝试:按google提供的帮助,大意是说邮件传送过程不是使用安全的连接。实例是机子上的postfix在连接google的邮件服务器时,没有使用tls连接。

那在postfix的配置文件main.cf里加上 smtp_tls_security_level = may ,那就好了。mail.log里会有相应的日志,如:postfix/smtp[31853]: Untrusted TLS connection established to gmail-smtp-in.l.google.com[2404:6800:4008:c03::1a]:25: TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-256) server-digest SHA256

参考: