postfix配置
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-16
|
postfix cyrus-sasl mysql postfixadmin courier-imap squirrelmail clamav spamassassin
系统环境:RedhatAS4u3
系统软件:只装了一些GCC和一些系统管理相关的包
安装Mysql
安装MYSQL
# tar -zxf mysql-standard-<?xml:namespace prefix = st2 />5.0.15-linux-i686.tar.gz
# cp -r mysql-standard-5.0.15-linux-i686 /usr/local/mysql
# vi /usr/local/mysql/support-files/my-medium.cnf
在后面加上
max_connections = 1000
log-slow-queries
long_query_time = 5
注 max_connections 为允许的最大连接数
log-slow-queries 打开低速查询日志
long_query_time 低速查询的秒数(运行一句sql达到此时间记录在日志里)
然后COPY 它为 /etc/my.cnf 文件
# cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf
添加mysql用户及用户组
# groupadd mysql
# useradd -g mysql mysql
修改mysql目录权限
# chown -R root /usr/local/mysql
# chgrp -R mysql /usr/local/mysql
# chown -R mysql /usr/local/mysql/data
生成mysql系统数据库
# /usr/local/mysql/scripts/mysql_install_db --user=mysql&
(在执行上边的这个命令的时候,一定要在/usr/local/mysql目录下执行,否则会有意外的结果)
启动mysql服务
# /usr/local/mysql/bin/mysqld_safe --user=mysql&
如出现 Starting mysqld daemon with databases from /usr/local/mysql/data
代表正常启动mysql服务了, 按Ctrl C 跳出
修改 mysql 的 root 密码
# /usr/local/mysql/bin/mysqladmin -u root -p password 123456
回车出现 Enter password: 最开始密码默认为空 继续回车即可
123456 即为你的新密码
安装Apache
解压源码包
# tar -zxf httpd-2.0.55.tar.gz
进入安装目录
# cd httpd-2.0.55
配置apache安装信息
# ./configure --prefix=/usr/local/apache --enable-modules=so --enable-rewrite
执行make安装
# make; make install
安装完后
# vi /usr/local/apache/conf/httpd.conf
找到 prefork.c 下的
MaxClients 150
改为
ServerLimit 2000
MaxClients 1000
apache默认工作在prefork.c模式下,并发进程为150,超过后就无法访问,150是远远不够的,这里按自己网站的需求改, 如1000
apache默认最大并发进程是 256 要先设置 ServerLimit 2000 将服务器可设的最大并发数设为2000, 然后再设置最大并发数 MaxClients 1000
找到 #ServerName [url]www.example.com:80[/url] 在其下设置 ServerName 如下
ServerName [url]www.mysite.com[/url]
基中 [url]www.mysite.com[/url] 为你网站名,也可用IP代替
找到 DocumentRoot "/usr/local/apache/htdocs"
设置你的 WEB 服务器的根目录 如
DocumentRoot "/myweb"
找到 DirectoryIndex index.html index.html.var 改为
DirectoryIndex index.html index.php index.htm
找到 ForceLanguagePriority Prefer Fallback 在其下加上
AddDefaultCharset gb2312
改完后保存(vi 的用法请查 Linux vi 命令)
用下面命令启动WEB服务器# /usr/local/apache/bin/apachectl start
查看自己的站点是否正常 [url]http://www.mysite.com[/url] 也可用IP
用 # /usr/local/apache/bin/apachectl stop 可停止服务
安装PHP
# tar -zxf php-5.0.5.tar.gz
# cd php-5.05
#./configure --prefix=/usr/local/php --with-apxs2=/apache/bin/apxs --with-mysql=/usr/local/mysql
(这是最基本的安装PHP)
# make
# make install
cyrus-sasl-2.1.21
# wget [url]http://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-[/url]2.1.21.tar.gz
# tar zxvf cyrus-sasl- |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn
为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!
|