實驗 搭建時間伺服器 郵件伺服器

2021-10-25 06:30:28 字數 2489 閱讀 1484

1、搭建時間伺服器,客戶端可在每天早晨的9:00整從ntp伺服器更新自己的時間。 2、搭建郵件伺服器,使用[email protected][email protected]使用者發一封郵件,內容為biechile。

1>

1.服務端

裝chrony包   yum install -y chrony

2.編輯配置檔案

vim /etc/chrony.conf

將服務端的時間伺服器改為阿里雲的伺服器(可改可不改)

允許客戶機訪問本台伺服器

3.重啟chronyd服務。

systemctl restart chronyd

date檢視時間

4.客戶端

裝chrony包

編輯配置檔案

重啟服務

systemctl restart chronyd

檢視時間 ,修改時間,從服務端 同步時間。

2.服務端 寫計畫任務

開機自動啟動計畫任務

systemctl enable chronyc

2>

1.安裝postfix包  關閉防火牆,selinux

yum install -y postfix

systemctl stop firewalld

setenforce 0

2.編輯主配置檔案   vim /etc/postfix/main.cf

編輯主機名

配置網域名稱

指定傳送郵件時所顯示的網域名稱

指定監聽介面

指定別人給你發郵件應該寫什麼主機名

指定信任的客戶端

指定可以幫忙**的mta主機

3.重啟服務 systemctl restart postfix

4.安裝dovecot包

yum install dovecot

配置dovecot的主配置檔案

[root@localhost ~]# vim /etc/dovecot/dovecot.conf

設定允許登入的ip段

編輯檔案

[root@localhost ~]# vim /etc/dovecot/conf.d/10-mail.conf

使用者郵件所在地

5.服務端開啟sasl認證,安裝sasl模組的軟體包cyrus-sasl

yum install -y cyrus-sasl

6.編輯postfix配置檔案

[root@localhost ~]# vim /etc/postfix/main.cf

追加如下內容

broken_sasl_auth_clients = yes   #啟用sasl對客戶端進行認證

smtpd_sasl_auth_enable = yes #啟用sasl認證

smtpd_sasl_security_options = noanonymous  #禁用匿名使用者

smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination  #定義收件人限定

7.重啟服務

[root@localhost ~]# systemctl restart postfix

[root@localhost ~]# systemctl restart dovecot

[root@localhost ~]# systemctl restart saslauthd

8.建立使用者wukong,wuneng。

useradd wukong

useradd wuneng

設定秘密

echo redhat | passwd --stdin wukong

echo redhat | passwd --stdin wuneng

9.修改許可權

[root@localhost ~]# chmod 0600 /var/mail/*   

如果不執行上面這個命令,可能會出現在系統中可以收到郵件,但是mua無法收到郵件。

10.使用foxmail登入

用wukong使用者給wuneng使用者發郵件。

搭建時間伺服器

1 請確認是否已經安裝ntp root web002 yum.repos.d rpm qa grep ntp ntpdate 4.2.6p5 28.el7.centos.x86 64 ntp 4.2.6p5 28.el7.centos.x86 64 2 若只有ntpdate而未見ntp,則需刪除原有...

搭建基本郵件伺服器

電子郵件伺服器的基本功能 為使用者提供電子郵箱儲存空間 使用者名稱 郵件網域名稱 處理使用者發出的郵件 傳遞給收件伺服器 處理使用者收到的郵件 投遞到郵箱 smtp協議 使用者發郵件的協議 埠25 pop3協議 使用者 用來郵件伺服器取得郵件 埠110 1.安裝postfix 預設的標準配置即可為主...

郵件本地伺服器搭建

1.準備工作 2.具體操作 服務求端操作 1 開啟伺服器軟體 進行系統設定 2 新建兩個賬號 如上設定得到的第乙個賬號 hym leon.com密碼 1234 同樣的方式操作新增第二個賬號 admin leon.com 密碼 1234 可以選擇系統管理員,也可以不選擇 1 2 步驟,完成了郵件伺服器...