返回顶部
首页 > 资讯 > 精选 >CentOS postfix的安装创建方法
  • 385
分享到

CentOS postfix的安装创建方法

2023-06-16 23:06:39 385人浏览 八月长安
摘要

这篇文章主要介绍“Centos postfix的安装创建方法”,在日常操作中,相信很多人在CentOS postfix的安装创建方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CentOS postfix的

这篇文章主要介绍“Centos postfix的安装创建方法”,在日常操作中,相信很多人在CentOS postfix的安装创建方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CentOS postfix的安装创建方法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

A、CentOS postfix下载软件包
[root@localhost i386]# cd
[root@localhost ~]# wget Http://ftp.wl0.org/official/2.5/SRPMS/postfix-2.5.4-2.src.rpm
[root@localhost ~]# rpm -ivh postfix-2.5.4-2.src.rpm
[root@localhost ~]# cd $SPEC
编辑postfix.spec 修改下面的选项
%define distribution rhel-5.0
%define with_mysql_redhat 1
%define with_sasl         2
%define with_vda          1

B、CentOS postfix安装创建rpm
[root@localhost SPECS]# rpmbuild -bb postfix.spec
[root@localhost RPMS]# cd $RPMS/i386
[root@localhost i386]# rpm -ivh postfix-2.5.4-2.rhel4.i386.rpm

C、CentOS postfix安装切换mta
[root@localhost i386]# alternatives --config mta (选择2,postfix)
[root@localhost i386]# rpm -e sendmail
[root@localhost i386]# cd /usr/sbin/
[root@localhost sbin]# mv sendmail sendmail.bak
[root@localhost sbin]# newaliases
[root@localhost sbin]# ln -s sendmail.postfix sendmail

D、CentOS postfix安装配置
[root@localhost ~]# cd /etc/postfix/
[root@localhost postfix]# mv main.cf main.cf.bak
[root@localhost postfix]# vim main.cf
输入下面的内容:
queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
mail_owner = postfix
unknown_local_recipient_reject_code = 550
debug_peer_level = 2
debugger_command =
PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
DDD $daemon_directory/$process_name $process_id & sleep 5

sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfix
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = /usr/share/doc/postfix-2.5.2-documentation/html
manpage_directory = /usr/share/man
sample_directory = /etc/postfix
readme_directory = /usr/share/doc/postfix-2.5.2-documentation/readme
alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/postfix/aliases
myhostname = mail.yiyou.org
mydomain = yiyou.org
mydestination = $myhostname
smtpd_banner = yiyou.org ESMTP Mail System
message_size_limit = 14680064
virtual_alias_maps = Mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_mailbox_base = /home/data/domains
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_mailbox_limit_maps = mysql:/etc/postfix/mysql_virtual_limit_maps.cf
virtual_transport = maildrop:
maildrop_destination_recipient_limit = 1

#sasl
smtpd_sasl_auth_enable = yes
smtpd_sasl2_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes

smtpd_recipient_restrictions =
permit_mynetworks,
permit_sasl_authenticated,
reject_unauth_destination,
reject_unauth_pipelining,
reject_invalid_hostname

复制extman/docs 目录的cf 文件到/etc/postfix
[root@localhost postfix]# cp /root/extman-0.2.5b1/docs/mysql_virtual_* .
因为CentOS postfix安装配置文件的用户、密码与数据库时一样,所以不用修改。
[root@localhost postfix]# service postfix start

到此,关于“CentOS postfix的安装创建方法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

--结束END--

本文标题: CentOS postfix的安装创建方法

本文链接: https://lsjlt.com/news/286077.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • CentOS postfix的安装创建方法
    这篇文章主要介绍“CentOS postfix的安装创建方法”,在日常操作中,相信很多人在CentOS postfix的安装创建方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CentOS postfix的...
    99+
    2023-06-16
  • CentOS安装Docker的方法
    要求 Docker可以运行在64位CentOS7.X和64位CentOS6.5(含,以上)系统内。 7.X内核版本要求3.10以上 6.5(含,以上)的内核版本要求2.6.32-43...
    99+
    2024-04-02
  • VS 2008软件的安装创建方法
    这篇文章主要介绍“VS 2008软件的安装创建方法”,在日常操作中,相信很多人在VS 2008软件的安装创建方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”VS 2008软件的安装创建方法”的疑惑有所帮助!...
    99+
    2023-06-17
  • CentOS 安装NodeJS V8.0.0的方法
    下载nodejs wget https://npm.taobao.org/mirrors/node/v8.0.0/node-v8.0.0-linux-x64.tar.xz 解压 tar -xvf nod...
    99+
    2022-06-04
    方法 NodeJS CentOS
  • Centos 7安装Redis的方法
    这篇文章给大家分享的是有关Centos 7安装Redis的方法的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、安装gcc依赖redis 是用 C 语言开发,安装之前必先确认是否...
    99+
    2024-04-02
  • centos下安装python3的方法
    在https://www.Python.org/ftp/python/下找到您所需的python版本如https://www.python.org/ftp/python/3.4.1/Python-3.4.1.tgz下载pythonwget ...
    99+
    2023-01-31
    方法 centos
  • centos的安装与操作方法
    本篇内容主要讲解“centos的安装与操作方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“centos的安装与操作方法”吧!CentOS 简介CentOS(Community Enterpri...
    99+
    2023-06-10
  • 如何在CentOS中安装和配置Postfix邮件服务器
    要在CentOS中安装和配置Postfix邮件服务器,请按照以下步骤进行: 安装Postfix: 在终端中运行以下命令来安装Pos...
    99+
    2024-04-02
  • CentOS 6.8 安装vsftpd的方法步骤
    vsftpd是“very secure FTP daemon”的缩写,是一个完全免费的、开发源代码的ftp服务器软件。 vsftpd是一款在linux发行版本中最受推崇的FTP服务器程序,小巧轻快、安全易用、支持虚拟用...
    99+
    2022-06-04
    CentOS 安装vsftpd centos6.8安装vsftpd
  • CentOs下安装gcc/g++/gdb的方法
    Centos支持使用yum安装,安装软件一般格式为yum install .......,注意安装时要先成为root用户,且在联网的状态下。 使用yum安装gcc:yum install gcc 使用:which gcc...
    99+
    2022-06-04
    centos gcc安装 centos gdb centos g++
  • centos 7 源码安装openssh的方法
    环境:centos 7.1.1503 最小化安装 依赖包下载: yum -y install lrzsz zlib-devel perl gcc pam-devel 1、安装openssl ,选用最新发布的版本:open...
    99+
    2022-06-04
    centos 7 源码安装openssh centos 7 源码安装
  • 在 CentOS 8 上安装Jenkins的方法
    在CentOS 8 上安装Jenkins需要使用root账号或具有sudo权限的账号。因为Jenkins是使用java编写的,所以需要安装Java环境 1、安装OpenJDK。 sudo dnf install java...
    99+
    2022-06-04
    CentOS 8 安装Jenkins CentOS 8 Jenkins
  • CentOS下Jsoncpp安装配置的方法
    目录1.安装2.测试3.问题及解决1. 安装 执行命令 [root@VM-0-9-centos ~]# cd /home [root@VM-0-9-centos home]# mkd...
    99+
    2024-04-02
  • CentOS 7下yum安装Apache的方法
    这篇文章主要介绍“CentOS 7下yum安装Apache的方法”,在日常操作中,相信很多人在CentOS 7下yum安装Apache的方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CentOS 7下yu...
    99+
    2023-06-05
  • CentOS下apache+php+mysql的安装方法
    本篇内容主要讲解“CentOS下apache+php+mysql的安装方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“CentOS下apache+php+mysql的安装方法”吧!给大家推荐一...
    99+
    2023-06-16
  • 如何在CentOS 8上安装和配置Postfix邮件服务器
    如何在CentOS 8上安装和配置Postfix邮件服务器,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。Postfix是一个开源的电子邮件服务器,。Postfi...
    99+
    2023-06-28
  • 如何进行CentOS Postfix邮件服务器的搭建
    如何进行CentOS  Postfix邮件服务器的搭建,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。实验内容: 初始环境的优化 DNS服务器的搭建和postfix域名...
    99+
    2023-06-06
  • CentOS安装pillow报错的解决方法
    安装pillow出现以下问题: ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, abortin...
    99+
    2022-06-04
    报错 解决方法 CentOS
  • CentOS 7 安装Chrome浏览器的方法
    本文介绍了CentOS 7 安装Chrome浏览器的方法,分享给大家,具体如下: 配置yum下载源: 在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo [root@loca...
    99+
    2022-06-04
    CentOS7 安装Chrome CentOS 安装Chrome浏览器
  • Centos 安装 PHP7.4 和 Nginx的操作方法
    准备 1、下载所需安装包 wget https://www.php.net/distributions/php-7.4.0.tar.gz wget http://nginx.org/download/nginx-1.17...
    99+
    2022-06-04
    centos安装php centos安装 nginx
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作