CentOS7搭建邮件服务器+Roundcube webMail
最近需要搭建邮件服务器,搭建记录如下:准备工作:LAMP环境:lnmp1.8【apache2.4+mysql5.6+php5.5.38】需要安装扩展:fileinfo、exif、ldap、ImagickwebMail:Roundcube 1.5.2一、搭建LAMP环境安装命令如下:wget http://soft.vpser.net/lnmp/lnmp1.8.tar.gz -cO lnmp1.8.
·
最近需要搭建邮件服务器,搭建记录如下:
准备工作:
LAMP环境:lnmp1.8【apache2.4+mysql5.6+php5.5.38】需要安装扩展:fileinfo、exif、ldap、Imagick
webMail:Roundcube 1.5.2
一、搭建LAMP环境
安装命令如下:
wget http://soft.vpser.net/lnmp/lnmp1.8.tar.gz -cO lnmp1.8.tar.gz
tar zxf lnmp1.8.tar.gz
cd lnmp1.8 && ./install.sh lamp
二、安装相关PHP扩展
1、安装ImageMagic
切换到lnmp1.8的src目录
cd ~/lnmp1.8/src
wget http://www.imagemagick.org/download/ImageMagick.tar.gz
tar -xzvf ImageMagick.tar.gz
cd ImageMagick-7.1.0-27
./configure --prefix=/usr/local/imagemagick
make && make install
检查是否安装成功
/usr/local/imagemagick/bin/convert -version
出现下面类似信息表示安装成功;
Version: ImageMagick 7.0.7-22 Q16 x86_64 2018-01-26 http://www.imagemagick.org
Copyright: © 1999-2018 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
Delegates (built-in): fontconfig freetype jng jpeg png x xml zlib
2、安装php扩展:imagick
cd ..
wget http://pecl.php.net/get/imagick-3.4.3.tgz
tar -xzvf imagick-3.4.3.tgz
cd imagick-3.4.3
phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/imagemagick
make && make install
编辑php.ini,添加extension=imagick.so
vim /usr/local/php/etc/php.ini
3、安装php扩展:fileinfo、exif、ldap
返回到src目录
cd ..
解压php5.5.38.tar.bz2
tar -xvf php-5.5.38.tar.bz2
进入扩展目录
cd php-5.5.38/ext/fileinfo
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
继续编译安装exif
cd ~/lnmp1.8/src/php-5.5.38/ext/exif
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
继续编译安装ldap
cd ~/lnmp1.8/src/php-5.5.38/ext/ldap
yum install openldap openldap-devel -y
cp -frp /usr/lib64/libldap* /usr/lib/
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
编辑php.ini,添加extension=fileinfo.so、extension=exif.so、extension=ldap.so
三、安装Roundcube1.5.2
1、创建主机a.com
lnmp vhost add
按提示创建好主机
2、下载Roundcube到主机目录
cd /home/wwwroot/a.com
wget https://github.com/roundcube/roundcubemail/releases/download/1.5.2/roundcubemail-1.5.2-complete.tar.gz
tar -xvf roundcubemail-1.5.2-complete.tar.gz
mv roundcubemail-1.5.2/* .
3、浏览器打开a.com/installer/index.php安装
具体配置参考:http://www.jack361.com/learn/host/1397.html
四、安装配置Postfix、Dovecot
更多推荐
已为社区贡献2条内容
所有评论(0)