centos5.2下安装配置postfix
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-14
aemond=/usr/local/courier-authlib/var/spool/authdaemon/socket cp mac/libdes/public/des.h ./ make make install #关闭原有的sasl,并创建链接(这个地方我和原文有不同)postfix 2.3以后的版本会分别在/usr/local/lib和/usr/local/include中搜索sasl库文件及头文件,故还须将其链接至此目录中: mv /usr/lib/sasl2 /usr/lib/sasl2.save mv /usr/lib/libsasl2.so.2 /usr/lib/libsasl2.so.2.save
mv /usr/lib/libsasl2.so.2.0.22 /usr/lib/libsasl2.so.2.0.22.save ln -sv /usr/local/sasl2/lib/* /usr/lib ln -sv /usr/local/sasl2/lib/* /usr/local/lib ln -sv /usr/local/sasl2/include/sasl/* /usr/local/include #创建运行时需要的目录并调试启动 mkdir -pv /var/state/saslauthd #/usr/local/sasl2/sbin/saslauthd -a shadow pam -d #启动并测试 /usr/local/sasl2/sbin/saslauthd -a shadow pam #配置库文件搜索路径 echo "/usr/local/sasl2/lib" >> /etc/ld.so.conf echo "/usr/local/sasl2/lib/sasl2" >> /etc/ld.so.conf ldconfig -v #开机自动启动 echo "/usr/local/sasl2/sbin/saslauthd -a shadow pam">>/etc/rc.local #=======================(6)安装BerkeleyDB============================================== cd /opt tar zxvf db-4.5.20.tar.gz cd db-4.5.20/build_unix ../dist/configure --prefix=/usr/local/BerkeleyDB make;make install ln -sv /usr/local/BerkeleyDB/include /usr/include/db4 ln -sv /usr/local/BerkeleyDB/include/db.h /usr/include/db.h ln -sv /usr/local/BerkeleyDB/include/db_cxx.h /usr/include/db_cxx.h echo "/usr/local/BerkeleyDB/lib" >> /etc/ld.so.conf ldconfig #=========================(7)安装httpd-2.2.8=========================================== cd /opt tar jxvf httpd-2.2.8.tar.bz2 cd httpd-2.2.8 ./configure --prefix=/usr/local/apache2 --enable-so --enable-ssl --with-ssl=/usr/local/ssl --enable-track-vars --enable-rewrite --with-zlib --enable-mods-shared=most --enable-suexec --with-suexec-caller=daemon make;make install #apache 开机启动 /usr/local/apache2/bin/apachectl start echo "/usr/local/apache2/bin/apachectl start" >> /etc/rc.local #===========================(8)安装libPNG============================================== cd /opt
tar zxvf libpng-1.2.26.tar.gz cd libpng-1.2.26 cp scripts/makefile.linux ./makefile ./configure --prefix=/usr/local/libpng make;make install #=============================(9)安装freetype========================================== cd /opt tar zxvf freetype-2.3.5.tar.gz cd freetype-2.3.5 ./configure make;make install #=============================(10)安装JPEG6============================================ cd /opt tar zxvf jpegsrc.v6b.tar.gz cd jpeg-6b mkdir -pv /usr/local/jpeg/{,bin,lib,include,man/man1,man1} ./configure --prefix=/usr/local/jpeg --enable-shared --enable- static make;make install #==============================(11)安装GD============================================== cd /opt tar zxvf gd-2.0.35.tar.gz cd gd-2.0.35 ./configure --with-png --with-freetype --with-jpeg=/usr/local/jpeg/ make;make install #===============================(12)安装LIBXML2======================================== cd /opt tar zxvf libxml2-2.6.31.t |
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: SUSE笔记:eject的使用下一篇: linux面试题(选择部分)
关于centos5.2下安装配置postfix的所有评论