Book Image

CentOS 7 Server Deployment Cookbook

By : Timothy Boronczyk, IRAKLI NADAREISHVILI
Book Image

CentOS 7 Server Deployment Cookbook

By: Timothy Boronczyk, IRAKLI NADAREISHVILI

Overview of this book

CentOS is derived from Red Hat Enterprise Linux (RHEL) sources and is widely used as a Linux server. This book will help you to better configure and manage Linux servers in varying scenarios and business requirements. Starting with installing CentOS, this book will walk you through the networking aspects of CentOS. You will then learn how to manage users and their permissions, software installs, disks, filesystems, and so on. You’ll then see how to secure connection to remotely access a desktop and work with databases. Toward the end, you will find out how to manage DNS, e-mails, web servers, and more. You will also learn to detect threats by monitoring network intrusion. Finally, the book will cover virtualization techniques that will help you make the most of CentOS.
Table of Contents (18 chapters)
CentOS 7 Server Deployment Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface

Configuring Postfix to provide SMTP services


This recipe teaches you how to configure Postfix as a basic e-mail server for your domain. E-mail is one of the oldest Internet services and has become one its most pervasive services. Moreover, e-mail can be one of the most difficult services to manage.

Using the Simple Mail Transport Protocol (SMTP), an e-mail message passes through many processes from its starting point on its way to your inbox. When someone writes you a message, they use an e-mail client to compose the message. The client sends the message to their mail server which looks up the MX records for your domain and relays the message to your mail server for delivery. Once the message is received by your mail server, it's delivered to your mail directory on the server. At least that's the basic idea. A message can be relayed by any number of intermediate servers between the sender's server and your mail server; servers can be configured to send mail, receive mail, or both. Different...