sudo tail -f 10 /var/log/maillog
warning: SASL: Connect to private/auth failed: No such file or directory
fatal: no SASL authentication mechanisms

查看:/etc/dovecot/conf.d/10-master.conf
找到 unix_listener private/auth
修改为:unix_listener /var/spool/postfix/private/auth
unix_listener /var/spool/postfix/private/auth { 
      mode = 0666 
      user = postfix 
      group = postfix 
    } 

然后 sudo systemctl restart dovecot

如何用dockerfile 和 docker compose 安装php82

1.创建Dockerfile 文件名:Dockerfile.php-fpm82 FROM php:8.2-fpm # 安装必要的依赖 RUN apt-get update && apt-get install -y --no-install-recom...

阅读全文

Linux使用lsyncd实现2个文件夹实时同步

官方文档: https://axkibe.github.io/lsyncd/download/ 1.安装 $ yum install lsyncd $ yum install rsync $ yum install libtermcap-devel ncurses-devel l...

阅读全文

firewall 防火墙常用命令

查看版本 $ firewall-cmd --version 0.4.3.3 help $ firewall-cmd --help 状态 $ firewall-cmd --state running 重载配置 $ firewall-cmd --reload 重新加载...

阅读全文

评论已经关闭。