查询DB时Apache CPU 100%

时间:2013-12-19 11:07:30

标签: mysql performance apache cpu

我有一个Ubuntu服务器和10个不同框架/ CMS的站点。

我的问题是,当我打开一个大型CMS与MySQL DB集成的站点,Apache2使用100%CPU时,在这些站点中我的页面速度在10到20秒之间(呈现HTML页面)我真的不喜欢不知道为什么。 (但是没有MySQL连接的所有PHP框架都能正常工作)。

使用我的服务器支持管理器,我们发现在我的服务器中一切正常(没有I / O问题或其他问题),我们认为Apache / MySQL配置存在问题。

我没有崩溃数据库表并优化了所有的innodb表。

当我从浏览器加载这个慢速CMS时,这是一个top快照:

PID USER    PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
13307 www-data  20   0 90116  42m  22m R  100  4.2   0:15.23 apache2
2224 root      20   0 37932 8148 1724 S    8  0.8 212:21.99 newrelic-daemon
13422 mysql     20   0  186m  47m 6280 S    0  4.7   0:11.20 mysqld
13889 root      20   0  2640 1132  860 R    0  0.1   0:00.03 top
1 root      20   0  2796 1124  792 S    0  0.1   0:06.28 init

Newrelic屏幕截图问题(不仅包括wordpress,还包括所有CMS):Newrelic screenshot

我的CPU信息:

$ head /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 45
model name      : Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
stepping        : 7
cpu MHz         : 2600.086
cache size      : 20480 KB
fdiv_bug        : no
hlt_bug         : no

我的记忆信息:

$ head /proc/meminfo
MemTotal:        1028476 kB
MemFree:          571424 kB
Buffers:           17920 kB
Cached:           273312 kB
SwapCached:          824 kB
Active:           232768 kB
Inactive:         180264 kB
Active(anon):     147336 kB
Inactive(anon):     5292 kB
Active(file):      85432 kB

我的Apache配置:

LockFile ${APACHE_LOCK_DIR}/accept.lock
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule mpm_prefork_module>
    StartServers          2
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients           50
    MaxRequestsPerChild   0
    </IfModule>
<IfModule mpm_worker_module>
    StartServers          2
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadLimit          64
    ThreadsPerChild      25
    MaxClients          150
    MaxRequestsPerChild   0
    </IfModule>
<IfModule mpm_event_module>
    StartServers          2
    MinSpareThreads       5
    MaxSpareThreads      10 
    ThreadLimit          64
    ThreadsPerChild      25
    MaxClients           50
    MaxRequestsPerChild   0
    </IfModule>
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
    </Files>
DefaultType text/plain
HostnameLookups Off
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
Include mods-enabled/*.load
Include mods-enabled/*.conf
Include httpd.conf
Include ports.conf
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
Include conf.d/
Include sites-enabled/

MySQL配置:

[client]
port        = 3306
socket      = /var/run/mysqld/mysqld.sock

[mysqld_safe]
socket      = /var/run/mysqld/mysqld.sock
nice        = 0

[mysqld]
user        = mysql
socket      = /var/run/mysqld/mysqld.sock
port        = 3306
basedir     = /usr
datadir     = /var/lib/mysql
tmpdir      = /tmp
skip-external-locking
key_buffer      = 32M
max_allowed_packet  = 16M
thread_stack        = 192K
thread_cache_size       = 286
interactive_timeout = 25
wait_timeout = 1000
myisam-recover         = BACKUP
myisam_sort_buffer_size = 32MB
max_connections        = 400
read_buffer_size = 1M
sort_buffer_size = 2M
table_cache            = 400
thread_concurrency     = 10
query_cache_limit   = 64M
query_cache_size        = 32M
general_log_file        = /var/log/mysql/mysql.log

log_error                = /var/log/mysql/error.log

log_slow_queries    = /var/log/mysql/mysql-slow.log
long_query_time = 4 
log-queries-not-using-indexes
log_bin         = /var/log/mysql/mysql-bin.log
expire_logs_days    = 10
max_binlog_size         = 100M
bind-address        = 127.0.0.1

[mysqldump]
quick
quote-names
max_allowed_packet  = 16M

[mysql]

[isamchk]
key_buffer      = 32M

!includedir /etc/mysql/conf.d/

如何解决问题?

2 个答案:

答案 0 :(得分:0)

您需要提供更多信息。例如,如果您尝试在wordpress 1000000中显示帖子,特别是如果您在单独的查询中获得此帖子的属性,则可以获得100%的CPU使用率。

尝试找到导致此问题的脚本,在高使用率时刻监视你的mysql(show processlist)和其他人。

答案 1 :(得分:0)

您的Apache配置存在很多问题 - 但这可能与您当前遇到的问题无关,就像您的DBMS状态一样 - 基于您提供的信息,它出现了问题。

您没有告诉我们哪个MPM Apache正在使用(这对于理解问题至关重要),也没有告诉我们哪个CMS。

我说你省略的信息只是冰山一角 - 调查和解决性能问题真的非常复杂 - 可能需要几个月的时间(其中大部分用于收集信息) - 你很这里不太可能得到明确的答案。