linux上安装基于postfix的全功能邮件服务器(1)
#不要用--prefix自定义安装目录,影响gd的安装
./configure make make install 安装freetype tar xzvf freetype-2.1.5.tar.gz cd freetype-2.1.5 ./configure --prefix=/usr/local/freetype make make install 安装libpng tar xzvf libpng-1.2.5.tar.gz #不要用--prefix自定义安装目录,影响gd的安装 cd libpng-1.2.5 cp scripts/makefile.std makefile make test make install 安装jpeg tar xzvf jpegsrc.v6b.tar.gz ./configure --prefix=/usr/local/jpeg6 --enable-shared --enable-static make make install 安装GD tar xzvf gd-2.0.33.tar.gz ./configure --prefix=/usr/local/gd --with-jpeg=/usr/local/jpeg6 --with-png --with-zlib --with-freetype=/usr/local/freetype make make install 安装PHP tar -zvxf php-5.2.3.tar.gz mkdir -p /usr/local/php cd php-5.2.3 ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-xml --with-png --with-jpeg-dir=/usr/local/jpeg6 --with-zlib --with-freetype-dir=/usr/local/freetype --with-gd=/usr/local/gd --enable-track-vars --enable-mbstring=all make make install cp php.ini-dist /usr/local/php/lib/php.ini 注:编辑apache配置文件httpd.conf,以apache支持php # vi /etc/httpd/httpd.conf 1、添加如下二行 AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps
2、定位至DirectoryIndex index.html 修改为: DirectoryIndex index.php index.html 3、按照使用习惯,这里将网站根目录指定到/var/www: 找到DocumentRoot “/usr/local/apache/htdocs” 修改为:DocumentRoot “/var/www”(后文中我们还会注释掉此行,以启用虚拟主机) 找到<Directory “/usr/local/apache/htdocs”> 修改为:<Directory “/var/www”> 七、安装Postfix-2.4.5 1.安装 groupadd -g 2525 postfix useradd -g postfix -u 2525 -s /sbin/nologin -M postfix groupadd -g 2526 postdrop useradd -g postdrop -u 2526 -s /bin/false -M postdrop #tar zxvf postfix-2.4.5.tar.gz #cd postfix-2.4.5 #make makefiles ''CCARGS=-DHAS_MYSQL -I/usr/local/mysql/include/mysql -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/local/sasl2/include/sasl -I/usr/local/BerkeleyDB/include -DUSE_TLS -I/usr/local/ssl/include/openssl '' ''AUXLIBS=-L/usr/local/mysql/lib/mysql -lmysqlclient -lz -lm -L/usr/local/sasl2/lib -lsasl2 -L/usr/local/BerkeleyDB/lib -L/usr/local/ssl/lib -lssl -lcrypto'' #make #make install 按照以下的提示输入相关的路径([]号中的是缺省值,”]”后的是输入值) install_root: [/] / tempdir: [/usr/local/src/ postfix-2.4.5] /tmp config_directory: [/etc/postfix] /etc/postfix daemon_directory: [/usr/libexec/postfix] /usr/local/postfix/libexec command_directory: [/usr/sbin] /usr/local/postfix/sbin queue_directory: [/var/spool/postfix] sendma |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |