Centos Installing RPMforge

[ 2009/09/16 23:40 | by suibing ]

  You should make sure that you have Priorities installed.

1.1. Priorities

yum-priorities is available in the CentOS 5 repositories:

点击在新窗口中浏览此图片

程序代码

yum install yum-priorities

Plugins are enabled in CentOS 5 by default.

Make sure that yum-priorities is enabled by editing the /etc/yum/pluginconf.d/priorities.conf file, and ensuring that it contains the following lines:

[main]

enabled=1

Edit the .repo files in /etc/yum.repos.d/ and set up priorities by adding the line:

priority=N

to a repository entry, where N is an integer number from 1 to 99.

The recommended settings are:

[base], [addons], [updates], [extras] ... priority=1

[centosplus],[contrib] ... priority=2

Third Party Repos such as rpmforge ... priority=N  (where N is > 10 and based on your preference)

1.2. RPMforge

Download the rpmforge-release package. Choose one of the two links below, depending on your architecture. If you are unsure of which one to use you can check your architecture with the command uname -i

i386

http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

x86_64

http://apt.sw.be/redhat/el5/en/x86_64/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm

点击在新窗口中浏览此图片

程序代码wget

http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

(You can find a complete list of rpmforge-release package packages at

http://dag.wieers.com/packages/rpmforge-release/

but it is recommended that you use one of the two listed above).

Install DAG's GPG key

点击在新窗口中浏览此图片

程序代码

rpm --import

http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt

Verify the package you have downloaded

点击在新窗口中浏览此图片

程序代码

rpm -K rpmforge-release-0.3.6-1.el5.rf.*.rpm

Security warning: The rpmforge-release package imports GPG keys into your RPM database. As long as you have verified the package and trust Dag then it should be safe.

Install the package

点击在新窗口中浏览此图片

程序代码

rpm -i rpmforge-release-0.3.6-1.el5.rf.*.rpm

This will add a yum repository config file and import the appropriate GPG keys. At this point, you can set the priority of the RPMForge repository, and also of the CentOS repositories if you have not done so yet.

Test with this command:

点击在新窗口中浏览此图片

程序代码

yum check-update

It should output these two lines:

Loading "priorities" plugin

...

76 packages excluded due to repository priority protectionsThe number above may differ, but there should be several packages shown as being excluded.

If so then it looks like things are working so try installing something like this

点击在新窗口中浏览此图片

程序代码

yum install mplayer

  

1G内存如何优化mysql (转)

[ 2009/09/16 23:40 | by suibing ]

  同时在线访问量继续增大 对于1G内存的服务器明显感觉到吃力

严重时甚至每天都会死机 或者时不时的服务器卡一下 这个问题曾经困扰了我半个多月

MySQL使用是很具伸缩性的算法,因此你通常能用很少的内存运行或给MySQL更多的被存以得到更好的性能。

安装好mysql后,配制文件应该在/usr/local/mysql/share/mysql目录中,配制文件有几个,有my-huge.cnf

my-medium.cnf my-large.cnf my-small.cnf,不同的流量的网站和不同配制的服务器环境,当然需要有不同的

配制文件了。一般的情况下,my-medium.cnf这个配制文件就能满足我们的大多需要;

一般我们会把配置文件拷贝到/etc/my.cnf 只需要修改这个配置文件就可以了

使用mysqladmin variables extended-status –u root –p 可以看到目前的参数

有3个配置参数是最重要的,即key_buffer_size,query_cache_size,table_cache

1.key_buffer_size

key_buffer_size只对MyISAM表起作用

key_buffer_size指定索引缓冲区的大小,它决定索引处理的速度,尤其是索引读的速度。一般我们设为16M,实

际上稍微大一点的站点 这个数字是远远不够的,通过检查状态值Key_read_requests和

Key_reads,可以知道key_buffer_size设置是否合理。比例key_reads / key_read_requests应该尽可

能的低,至少是1:100,1:1000更好(上述状态值可以使用SHOW STATUS LIKE ‘key_read%’获得)。 或者如

果你装了phpmyadmin 可以通过服务器运行状态看到,笔者推荐用phpmyadmin管理mysql,以下的状态值都是本人

通过phpmyadmin获得的

实例分析:

这个服务器已经运行了20天

key_buffer_size – 128M

key_read_requests – 650759289

key_reads - 79112

比例接近1:8000 健康状况非常好

另外一个估计key_buffer_size的办法 把你网站数据库的每个表的索引所占空间大小加起来看看

以此服务器为例:比较大的几个表索引加起来大概125M 这个数字会随着表变大而变大

2.query_cache_size

从4.0.1开始,MySQL提供了查询缓冲机制。使用查询缓冲,MySQL将Select语句和查询结果存放在缓冲区中,今

后对于同样的Select语句(区分大小写),将直接从缓冲区中读取结果。根据MySQL用户手册,使用查询缓冲最

多可以达到238%的效率。

通过调节以下几个参数可以知道query_cache_size设置得是否合理

Qcache inserts

Qcache hits

Qcache lowmem prunes

Qcache free blocks

Qcache total blocks

Qcache_lowmem_prunes的值非常大,则表明经常出现缓冲不够的情况,同时Qcache_hits的值非常大,则表明查

询缓冲使用非常频繁,此时需要增加缓冲大小

Qcache_hits的值不大,则表明你的查询重复率很低,这种情况下使用查询缓冲反而会影响效率,那么可以考虑

不用查询缓冲。此外,在Select语句中加入SQL_NO_CACHE可以明确表示不使用查询缓冲。

Qcache_free_blocks,如果该值非常大,则表明缓冲区中碎片很多

query_cache_type指定是否使用查询缓冲

我设置:

query_cache_size = 32M

query_cache_type= 1

得到如下状态值:

Qcache queries in cache 12737 表明目前缓存的条数

Qcache inserts 20649006

Qcache hits 79060095  看来重复查询率还挺高的

Qcache lowmem prunes 617913 有这么多次出现缓存过低的情况

Qcache not cached 189896   

Qcache free memory 18573912  目前剩余缓存空间

Qcache free blocks 5328 这个数字似乎有点大 碎片不少

Qcache total blocks 30953

如果内存允许32M应该要往上加点

3.table_cache

table_cache指定表高速缓存的大小。每当MySQL访问一个表时,如果在表缓冲区中还有空间,该表就被打开并

放入其中,这样可以更快地访问表内容。通过检查峰值时间的状态值Open_tables和Opened_tables,可以决定

是否需要增加table_cache的值。如果你发现open_tables等于table_cache,并且opened_tables在不断增长,

那么你就需要增加table_cache的值了(上述状态值可以使用SHOW STATUS LIKE ‘Open%tables’获得)。注意

,不能盲目地把table_cache设置成很大的值。如果设置得太高,可能会造成文件描述符不足,从而造成性能不

稳定或者连接失败。

对于有1G内存的机器,推荐值是128-256。

笔者设置table_cache = 256

得到以下状态:

Open tables 256

Opened tables 9046

虽然open_tables已经等于table_cache,但是相对于服务器运行时间来说,已经运行了20天,opened_tables的

值也非常低。因此,增加table_cache的值应该用处不大。

如果运行了6个小时就出现上述值 那就要考虑增大table_cache

4.log-bin

如果你不需要记录2进制log 就把这个功能关掉,注意关掉以后就不能恢复出问题前的数据了,需要您手动备份

,二进制日志包含所有更新数据的语句,其目的是在恢复数据库时用它来把数据尽可能恢复到最后的状态。另

外,如果做同步复制( Replication )的话,也需要使用二进制日志传送修改情况。

log_bin指定日志文件,如果不提供文件名,MySQL将自己产生缺省文件名。MySQL会在文件名后面自动添加数

字引,每次启动服务时,都会重新生成一个新的二进制文件。

此外,使用log-bin-index可以指定索引文件;使用binlog-do-db可以指定记录的数据库;使用binlog-

ignore-db可以指定不记录的数据库。注意的是:binlog-do-db和binlog-ignore-db一次只指定一个数据库,指

定多个数据库需要多个语句。而且,MySQL会将所有的数据库名称改成小写,在指定数据库时必须全部使用小写

名字,否则不会起作用。

关掉这个功能只需要在他前面加上#号

#log-bin

5.开启慢查询日志( slow query log )

慢查询日志对于跟踪有问题的查询非常有用。它记录所有查过long_query_time的查询,如果需要,还可以记

录不使用索引的记录。下面是一个慢查询日志的例子:

开启慢查询日志,需要设置参数log_slow_queries、long_query_times、log-queries-not-using-indexes。

log_slow_queries指定日志文件,如果不提供文件名,MySQL将自己产生缺省文件名。long_query_times指定慢

查询的阈值,缺省是10秒。log-queries-not-using-indexes是4.1.0以后引入的参数,它指示记录不使用索引

的查询。

笔者设置long_query_time=10

6.其他一些重要参数

笔者设置:

sort_buffer_size = 1M

max_connections=120

wait_timeout =120

back_log=100

read_buffer_size = 1M

thread_cache=32

interactive_timeout=120

thread_concurrency = 4

参数说明:

back_log

要求MySQL能有的连接数量。当主要MySQL线程在一个很短时间内得到非常多的连接请求,这就起作用,然后

主线程花些时间(尽管很短)检查连接并且启动一个新线程。back_log值指出在MySQL暂时停止回答新请求之前的

短时间内多少个请求可以被存在堆栈中。只有如果期望在一个短时间内有很多连接,你需要增加它,换句话说

,这值对到来的TCP/IP连接的侦听队列的大小。你的***作系统在这个队列大小上有它自己的限制。 Unix

listen(2)系统调用的手册页应该有更多的细节。检查你的OS文档找出这个变量的最大值。试图设定back_log高

于你的***作系统的限制将是无效的。

max_connections

并发连接数目最大,120 超过这个值就会自动恢复,出了问题能自动解决

thread_cache

没找到具体说明,不过设置为32后 20天才创建了400多个线程 而以前一天就创建了上千个线程 所以还是有

用的

thread_concurrency

#设置为你的cpu数目x2,例如,只有一个cpu,那么thread_concurrency=2

#有2个cpu,那么thread_concurrency=4

skip-innodb

#去掉innodb支持

附my.cnf全部文件

# Example MySQL config file for medium systems.

#

# This is for a system with little memory (32M - 64M) where MySQL plays

# an important part, or systems up to 128M where MySQL is used together with

# other programs (such as a web server)

#

# You can copy this file to

# /etc/my.cnf to set global options,

# mysql-data-dir/my.cnf to set server-specific options (in this

# installation this directory is /var/lib/mysql) or

# "/.my.cnf to set user-specific options.

#

# In this file, you can use all long options that a program supports.

# If you want to know which options a program supports, run the program

# with the "--help" option.

# The following options will be passed to all MySQL clients

[client]

#password = your_password

port = 3306

socket = /tmp/mysql.sock

#socket = /var/lib/mysql/mysql.sock

# Here follows entries for some specific programs

# The MySQL server

[mysqld]

port = 3306

socket = /tmp/mysql.sock

#socket = /var/lib/mysql/mysql.sock

skip-locking

key_buffer = 128M

max_allowed_packet = 1M

table_cache = 256

sort_buffer_size = 1M

net_buffer_length = 16K

myisam_sort_buffer_size = 1M

max_connections=120

#addnew config

wait_timeout =120

back_log=100

read_buffer_size = 1M

thread_cache=32

skip-innodb

skip-bdb

skip-name-resolve

join_buffer_size=512k

query_cache_size = 32M

interactive_timeout=120

long_query_time=10

log_slow_queries= /usr/local/mysql4/logs/slow_query.log

query_cache_type= 1

# Try number of CPU's*2 for thread_concurrency

thread_concurrency = 4

#end new config

# Don't listen on a TCP/IP port at all. This can be a security enhancement,

# if all processes that need to connect to mysqld run on the same host.

# All interaction with mysqld must be made via Unix sockets or named pipes.

# Note that using this option without enabling named pipes on Windows

# (via the "enable-named-pipe" option) will render mysqld useless!

#

#skip-networking

# Replication Master Server (default)

# binary logging is required for replication

#log-bin

# required unique id between 1 and 2^32 - 1

# defaults to 1 if master-host is not set

# but will not function as a master if omitted

server-id = 1

# Replication Slave (comment out master section to use this)

#

# To configure this host as a replication slave, you can choose between

# two methods :

#

# 1) Use the CHANGE MASTER TO command (fully described in our manual) -

# the syntax is:

#

# CHANGE MASTER TO MASTER_HOST=, MASTER_PORT= ,

# MASTER_USER=, MASTER_PASSWORD= ;

#

# where you replace , , by quoted strings and

# by the master's port number (3306 by default).

#

# Example:

#

# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,

# MASTER_USER='joe', MASTER_PASSWORD='secret';

#

# or

#

# 2) Set the variables below. However, in case you choose this method, then

# start replication for the first time (even unsuccessfully, for example

# if you mistyped the password in master-password and the slave fails to

# connect), the slave will create a master.info file, and any later

# change in this file to the variables' values below will be ignored and

# overridden by the content of the master.info file, unless you shutdown

# the slave server, delete master.info and restart the slaver server.

# For that reason, you may want to leave the lines below untouched

# (commented) and instead use CHANGE MASTER TO (see above)

#

# required unique id between 2 and 2^32 - 1

# (and different from the master)

# defaults to 2 if master-host is set

# but will not function as a slave if omitted

#server-id = 2

#

# The replication master for this slave - required

#master-host =

#

# The username the slave will use for authentication when connecting

# to the master - required

#master-user =

#

# The password the slave will authenticate with when connecting to

# the master - required

#master-password =

#

# The port the master is listening on.

# optional - defaults to 3306

#master-port =

#

# binary logging - not required for slaves, but recommended

#log-bin

# Point the following paths to different dedicated disks

#tmpdir = /tmp/

#log-update = /path-to-dedicated-directory/hostname

# Uncomment the following if you are using BDB tables

#bdb_cache_size = 4M

#bdb_max_lock = 10000

# Uncomment the following if you are using InnoDB tables

#innodb_data_home_dir = /var/lib/mysql/

#innodb_data_file_path = ibdata1:10M:autoextend

#innodb_log_group_home_dir = /var/lib/mysql/

#innodb_log_arch_dir = /var/lib/mysql/

# You can set .._buffer_pool_size up to 50 - 80 %

# of RAM but beware of setting memory usage too high

#innodb_buffer_pool_size = 16M

#innodb_additional_mem_pool_size = 2M

# Set .._log_file_size to 25 % of buffer pool size

#innodb_log_file_size = 5M

#innodb_log_buffer_size = 8M

#innodb_flush_log_at_trx_commit = 1

#innodb_lock_wait_timeout = 50

[mysqldump]

quick

max_allowed_packet = 16M

[mysql]

no-auto-rehash

# Remove the next comment character if you are not familiar with SQL

#safe-updates

[isamchk]

key_buffer = 20M

sort_buffer_size = 20M

read_buffer = 2M

write_buffer = 2M

[myisamchk]

key_buffer = 20M

sort_buffer_size = 20M

read_buffer = 2M

write_buffer = 2M

[mysqlhotcopy]

interactive-timeout

  

今天有位朋友问我怎么在Lighttpd中部署PhpWind的伪静态规则,由于我没有使用过PhpWind的程序,所以我并不清楚他的伪静态规则是怎么样的,这里就用Discuz的伪静态规则讲解一下应该怎么修改才能使Lighttpd也能支持Discuz的伪静态。使用其他程序配置伪静态按照这个思路走过来也就对了。

首先我们打开.htaccess,如果没有找到,可以在用户手册那里找到规则。

# 将 RewriteEngine 模式打开
RewriteEngine On

# 修改以下语句中的 /discuz 为你的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 /
RewriteBase /discuz

# Rewrite 系统规则请勿修改
RewriteRule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
RewriteRule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3D$3&page=$2
RewriteRule ^space-(username|uid)-(.+).html$ space.php?$1=$2
RewriteRule ^tag-(.+).html$ tag.php?name=$1

我们就把一些在lighttpd中不需要使用的删除,比如RewriteEngine On,RewriteBase /discuz和那些没用的说明,我们只需要保留RewriteRule里面的内容。删除后就只剩下下面这些了。

RewriteRule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
RewriteRule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3D$3&page=$2
RewriteRule ^space-(username|uid)-(.+).html$ space.php?$1=$2
RewriteRule ^tag-(.+).html$ tag.php?name=$1

紧接着,我们需要做的就是将规则转换成在lighttpd中支援的类似perl hash声明的字串即可。
我们删除所有列前面的 RewriteRule 和空格,将列的最前面^修改为"^(.*)/,然后将中间的空格替换成" => "$1/,然后在最后添加";。全部列搞定之后,我们将要对=>右边的内容进行修改,将原来的$1修改为$2,$2修改为$3,依此类推,最后我们用一个括号将这些语句包围起来。然后在括号前添加url.rewrite-once = ,然后将这个规则放入虚拟主机的大括号中就可以了。

下面是配置好的lighttpd的Discuz伪静态规则

$HTTP["host"] =~ "^bbs.youdomain.com$" {
url.rewrite-once = (
"^(.*)/archiver/((fid|tid)-[w-]+.html)$" => "$1/archiver/index.php?$2",
"^(.*)/forum-([0-9]+)-([0-9]+).html$" => "$1/forumdisplay.php?fid=$2&page=$3",
"^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$" => "$1/viewthread.php?tid=$2&extra=page%3D$4&page=$3",
"^(.*)/space-(username|uid)-(.+).html$" => "$1/space.php?$2=$3",
"^(.*)/tag-(.+).html$" => "$1/tag.php?name=$2"
)
}

最后,重启一下Lighttpd服务器即可。

注:如果程序放在目录里,比如程序放在discuz这个目录,那么我们就需要在规则里进行修改,如上面的例子,我们只要将"^(.*)/修改为"^(.*)/discuz/,将"$1/修改为"$1/discuz/即可。
匆忙中写下此文,如果以上有差错,请与我取得联系。我明天会再测试,现在要去睡觉了。呵呵。

  lxadmin后台进不了的办法

/script/upcp

lxadmin更换服务器IP

/script/fixweb

lxadmin忘记控制台登陆密码

/script/resetpassword master newpass

lxadmin lighttpd升级安装zend

cd /usr/local/src

wget

http://downloads.zend.com/optimizer/3.3.3/ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz

tar -xzvf ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz

./ZendOptimizer-3.3.3-linux-glibc23-i386/install.sh

php.ini配置文件目录是:/etc

注意使用的是lighttpd,而非apache

配置域名目录下php.ini文件

1,/etc/php.ini是总的配置文件。还有一个具体的配置文件位于:/home/httpd/domain.com/php.ini,这个文件也要设置下。

2,把php.ini文件下的[zend]段落复制下来,再添加到/home/httpd/domain.com/php.ini文件中。

[Zend]

zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.3.3

zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.3.3

zend_optimizer.version=3.3.3

zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so

zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so

重启lighttpd

/etc/init.d/lighttpd restart

Lxadmin如何启用mbstring

登陆SSH控制台.

yum install php-mbstring

然后重启即可

service httpd restart

  

lighttpd优化

[ 2009/09/16 23:39 | by suibing ]

  对服务器而言最重要的就是优化了.

apache的优化文章,相信你也见过不少了.

这里稍微摘出lighttpd的几个优化参数看一看.

本文主要为跑php(fastcgi)的lighttpd设置.

如果需要跑静态页面,可以忽略本文 keep-alive 部分(并调大常连接数)

1 最大连接数

默认是1024

修改 server.max-fds,大流量网站推荐2048.

因为lighttpd基于线程,而apache(MPM-prefork)基于子进程,

所以apache需要设置startservers,maxclients等,这里不需要

2 stat() 缓存

stat() 这样的系统调用,开销也是相当明显的.

缓存能够节约时间和环境切换次数(context switches)

一句话,lighttpd.conf加上

server.stat-cache-engine = “fam”

lighttpd还另外提供simple(缓存1秒内的stat()),disabled选项.

相信没人会选disabled吧.

3 常连接(HTTP Keep-Alive)

一般来说,一个系统能够打开的文件个数是有限制的(文件描述符限制)

常连接占用文件描述符,对非并发的访问没有什么意义.

(文件描述符的数量和许多原因有关,比如日志文件数量,并发数目等)

这是lighttpd在keep-alive方面的默认值.

server.max-keep-alive-requests = 128

server.max-keep-alive-idle = 30

换言之,lighttpd最多可以同时承受30秒长的常连接,每个连接最多请求128个文件.

但这个默认值确实不适合非并发这种多数情况.

lighttpd.conf 中减小

server.max-keep-alive-requests

server.max-keep-alive-idle

两个值,可以减缓这种现象.

甚至可以关闭lighttpd keep-alive.

server.max-keep-alive-requests = 0

4 事件处理

对于linux kernel 2.6来说,没有别的可说

lighttpd.conf中加上这一句足矣

server.event-handler = “linux-sysepoll”

另外,

linux 2.4 使用 linux-rtsig

solaris: solaris-devpoll

freebsd 使用 freebsd-kqueue

unix 使用 poll

5 网络处理

lighttpd 大量使用了 sendfile() 这样一个高效的系统调用.

减少了从应用程序到网卡间的距离.

(同时也减少了lighttpd对cpu的占用,这部分占用转嫁到内核身上了)

根据平台,可以设置不同的参数.

(linux) server.network-backend = “linux-sendfile”

solaris: solaris-sendfilev

freebsd: freebsd-sendfile

unix: writev

如果有兴趣的话,也可以看看lighttpd在async io(aio)上的实现,仅限 lighttpd 1.5

(linux-aio-sendfile, posix-aio, gthread-aio)

此外,网络方面,核心的参数也需要适当进行修改,

这里就不需要详细说明了.

6 本文涉及 lighttpd.conf 参数总结

以下适合linux 2.6,php-fastcgi

var.author="fcicq"

server.stat-cache-engine = "fam"

server.network-backend = "linux-sendfile"

server.event-handler = "linux-sysepoll"

server.max-keep-alive-requests = 0

ps:

注意到不对劲了没有?

静态服务:

server.max-keep-alive-requests = 128

server.max-keep-alive-idle = 5

server.max-read-idle = 60

server.max-write-idle = 360

server.max-fds = 2048 (needs to run as root)

动态服务:

server.max-keep-alive-requests = 0

====

server.use-noatime = “enable” (or mount with -o noatime)

server.max-stat-threads = 2 (静态服务可调大)

server.max-read-threads = 64 (2-4 per disk is good.)

别忘了

ulimit -SHn 51200

  

分页: 9/40 第一页 上页 4 5 6 7 8 9 10 11 12 13 下页 最后页 [ 显示模式: 摘要 | 列表 ]