完美的服务器 - CentOS 7.1与Apache2,Postfix,Dovecot,Pure-FTPD,BIND和ISPConfig 3
本教程将介绍如何在CentOS 7.1(64位)服务器上安装ISPConfig 3。 ISPConfig 3是一个Web托管控制面板,允许您通过Web浏览器配置以下服务:Apache Web服务器,Postfix邮件服务器,MySQL,BINDNameservers,PureFTPd,SpamAssassin,ClamAV,Mailman等。 自3.0.4版以来,除了Apache之外,ISPConfig还全面支持nginx Web服务器; 本教程介绍了使用Apache而不是nginx的服务器的设置。
1要求
要安装此类系统,您将需要以下信息:
- Centos 7.1最小服务器系统。 这可以是从我们的Centos 7.1最小服务器教程中所述的从头开始安装的服务器,也可以是安装了Centos 7.1安装程序的托管公司的虚拟服务器或根服务器。
- 快速的互联网连接。
2初步说明
在本教程中,我使用hostname server1.example.com
,IP地址为192.168.1.100
和网关192.168.1.254
。 这些设置可能会有所不同,因此您必须在适当的情况下更换它们。
3设置键盘布局
如果服务器的键盘布局与您的键盘不匹配,则可以使用localectl命令切换到右键盘(在我的情况下,“de”表示德语键盘布局)
localectl set-keymap de
要获取所有可用键盘映射列表,请运行:
localectl list-keymaps
我想在本教程末尾安装ISPConfig,ISPConfig附带了Ilike用作防火墙的Bastille防火墙脚本,因此我现在禁用默认的CentOS防火墙。 当然,您可以随时离开CentOS防火墙并根据自己的需要进行配置(但是后来您不应该再使用任何其他防火墙,因为它可能会干扰CentOS防火墙)。
跑...
yum -y install net-tools
systemctl stop firewalld.service
systemctl disable firewalld.service
停止和禁用CentOS防火墙。
那么你应该检查防火墙是否已被禁用。 为此,请运行命令:
iptables -L
输出应如下所示:
[root@server1 ~]# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
或者使用firewall-cmd命令:
firewall-cmd --state
[root@server1 ~]# firewall-cmd --state
not running
[root@server1 ~]#
现在我将安装网络配置编辑器和基于shell的编辑器“nano”,我将在后续步骤中使用编辑配置文件:
yum -y install nano wget NetworkManager-tui
如果您在安装过程中未配置网卡,可以现在进行。 跑...
nmtui
...并转到编辑连接
:
选择您的网络接口:
然后填写您的网络详细信息 - 禁用DHCP并填写静态IP地址,网络掩码,网关和一个或两个Nameservers,然后按OK
:
接下来,选择确定
以确认您在网络设置中所做的更改
并退出
关闭nmtui网络配置工具。
你应该跑
ifconfig
现在检查安装程序是否得到您的IP地址正确:
[root@server1 ~]# ifconfig ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::20c:29ff:fecd:cc52 prefixlen 64 scopeid 0x20 ether 00:0c:29:cd:cc:52 txqueuelen 1000 (Ethernet) RX packets 55621 bytes 79601094 (75.9 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 28115 bytes 2608239 (2.4 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 0 (Local Loopback) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
如果您的网卡没有显示在那里,那么它不会在启动时启用,在这种情况下,打开文件/ etc / sysconfig / network-scripts / ifcfg-eth0
nano /etc/sysconfig/network-scripts/ifcfg-ens33
并将ONBOOT设置为yes:
[...]
ONBOOT=yes
[...]
并重新启动服务器。
检查您的/etc/resolv.conf
是否列出您以前配置的所有Nameservers:
cat /etc/resolv.conf
如果缺少Nameservers,请运行
nmtui
并再次添加缺失的Nameservers。
现在,对配置...
4调整/ etc / hosts
接下来我们编辑/ etc / hosts
。 看起来像这样:
nano /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.1.100 server1.example.com server1
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
5禁用SELinux
SELinux是CentOS的安全扩展,应该提供扩展的安全性。 在我看来,你不需要配置一个安全的系统,它通常会导致更多的问题,而不是优势(考虑到你做了一周的故障排除后,因为一些服务不能按预期工作,然后你发现一切都OK,只有SELinux造成问题)。 因此我禁用它(如果你想稍后安装ISPConfig,这是必须的)。
编辑/ etc / selinux / config
并设置SELINUX = disabled
:
nano /etc/selinux/config
# This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=disabled # SELINUXTYPE= can take one of these two values: # targeted - Targeted processes are protected, # mls - Multi Level Security protection. SELINUXTYPE=targeted
之后我们必须重新启动系统:
reboot
6启用其他存储库并安装一些软件
首先我们导入软件包的GPG密钥:
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*
然后,我们在CentOS系统上启用EPEL存储库,因为本教程中将要安装的许多软件包在官方CentOS 7存储库中不可用:
yum -y install epel-release
yum -y install yum-priorities
编辑/etc/yum.repos.d/epel.repo
...
nano /etc/yum.repos.d/epel.repo
...并将行优先级= 10
添加到[epel]
部分:
[epel] name=Extra Packages for Enterprise Linux 7 - $basearch #baseurl=http://download.fedoraproject.org/pub/epel/7/$basearch mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=$basearch failovermethod=priority enabled=1 priority=10 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 [...]
然后我们更新系统上现有的软件包:
yum update
现在我们安装一些稍后需要的软件包:
yum -y groupinstall 'Development Tools'
7配额
(如果您选择了不同于我的分区方案,则必须调整本章,以便配额适用于您需要的分区。)
要安装配额,我们运行这个命令:
yum -y install quota
现在我们检查是否已经为网站(/ var / www)和maildir数据(var / vmail)存储的文件系统启用了配额。 在这个例子中,我有一个大的根分区,所以我搜索'/':
mount | grep ' / '
[root@server1 ~]# mount | grep ' / '
/dev/mapper/centos-root on / type xfs (rw,relatime,attr2,inode64,noquota)
[root@server1 ~]#
如果您有一个单独的/ var分区,那么请使用:
mount | grep ' /var '
代替。 如果该行包含单词“ noquota ”,则继续执行以下步骤以启用配额。
在/(根)分区上启用配额
通常,您将在/ etc / fstab文件中启用配额,但如果文件系统是根文件系统“/”,则必须通过Linux内核的引导参数启用配额。
编辑grub配置文件:
nano /etc/default/grub
搜索从GRUB_CMDLINE_LINUX开始的行,并将rootflags = uquota,gquota
添加到命令行参数,以便生成的行如下所示:
GRUB_CMDLINE_LINUX="rd.lvm.lv=centos/swap vconsole.font=latarcyrheb-sun16 rd.lvm.lv=centos/root crashkernel=auto vconsole.keymap=us rhgb quiet rootflags=uquota,gquota"
并通过运行以下命令应用更改。
cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg_bak
grub2-mkconfig -o /boot/grub2/grub.cfg
并重新启动服务器。
reboot
现在检查配额是否启用:
mount | grep ' / '
[root@server1 ~]# mount | grep ' / '
/dev/mapper/centos-root on / type xfs (rw,relatime,attr2,inode64,usrquota,grpquota)
[root@server1 ~]#
当配额处于活动状态时,我们可以在装载选项列表中看到“ usrquota,grpquota ”。
在单独的/ var分区上启用配额
如果您有一个单独的/ var分区,那么编辑/ etc / fstab
并将/
uquota,gquota
添加到/
partition( / dev / mapper / centos-var
)中:
nano /etc/fstab
#
# /etc/fstab
# Created by anaconda on Sun Sep 21 16:33:45 2014
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/centos-root / xfs defaults 1 1
/dev/mapper/centos-var /var xfs defaults,uquota,gquota
1 2
UUID=9ac06939-7e43-4efd-957a-486775edd7b4 /boot xfs defaults 1 3
/dev/mapper/centos-swap swap swap defaults 0 0
然后跑
mount -o remount /var
quotacheck -avugm
quotaon -avug
启用配额。 当您收到启用配额的oartition错误时,请重新启动服务器,然后再继续。
8安装Apache,MySQL,phpMyAdmin
我们可以使用一个命令安装所需的软件包:
yum -y install ntp httpd mod_ssl mariadb-server php php-mysql php-mbstring phpmyadmin