排序
8.2配置基础的电子邮件系统
1.设置服务器主机名称,需要保证服务器主机名称与发信域名保持一致。 [root@dsrw ~]# vim /etc/hostname [root@dsrw ~]# hostname dsrw.com [root@dsrw ~]# hostnamectl set-hostname mail.dsrw...
8.3配置Postfix电子邮件服务
1.安装Postfix。 [root@dsrw ~]# dnf install postfix Updating Subscription Management repositories. Unable to read consumer identity This system is not registered to Red Hat Subscrip...
8.4配置Dovecot服务程序
1.安装Dovecot服务程序。 [root@dsrw ~]# dnf install -y dovecot Updating Subscription Management repositories. Unable to read consumer identity This system is not registered to Red H...
8.5客户使用电子邮件系统
1.安装OutLook2010,设置相关信息。 图8-2输入邮件服务器信息 图8-3连接到邮件服务器 图8-4新建电子邮件 图8-5发送邮件 2.安装查看邮件的程序mailx [root@mail ~]# dnf install mailx Updating ...
8.6 设置用户别名信箱
1.向bin发一份邮件 图8-6 向bin用户发送邮件 2.切换用户,查看邮件 [root@mail ~]# su - bin This account is currently not available. 您在 /var/spool/mail/root 中有新邮件 [root@mail ~]# ...
8.7 Linux 邮件客户端
1.安装Thunderbird客户端的安装包。 [root@mail ~]# dnf install -y thunderbird Updating Subscription Management repositories. Unable to read consumer identity This system is not regis...
第9章 Ansible服务实现自动化运维-9.1 Ansible 安装
Ansible是运维自动化工具中的一款优秀软件,用户可以使用Ansible自动部署应用程序,以此实现IT基础架构的全面部署。它基于SSH远程会话协议,不需要客户端程序,直接用SSH协议进行远程控制。 Ans...
9.2运行临时命令
1.Ansible的常用模块 ping:检查受管主机的网络是否能够连通 yum:安装、更新及卸载软件包 yum_repository:管理主机的软件仓库配置文件 template:复制模板文件到受管主机 copy:新建、修改及...
9.3剧本文件
1.Ansible服务的剧本(playbook)文件 采用YAML语言编写,具有强制性的格式规范,它通过空格将不同信息分组,YAML文件的开头需要先写3个减号(---),多个分组的信息需要间隔一致才能执行,而且...
9.4创建及使用角色-9.4.1内置角色
角色功能分别把变量、文件、任务、模块及处理器配置放在各个独立的目录中,然后对其进行便捷加载。简单来说,角色功能是把常用的一些功能“类模块化”,然后在用的时候加载。 1.加载系统内置角...