Server with high load.

Thafusion

Verified User
Joined
Oct 8, 2003
Messages
52
This is my httpd.conf :
Code:
Timeout 300
KeepAlive Off
MaxKeepAliveRequests 500
KeepAliveTimeout 5
MinSpareServers 5
MaxSpareServers 20
StartServers 8
MaxClients 450
MaxRequestsPerChild 1000

My cnf.
Code:
[mysqld]
#datadir=/var/lib/mysql
#socket=/var/lib/mysql/mysql.sock
skip-locking
skip-innodb
query_cache_limit=1M
query_cache_size=32M
query_cache_type=1
max_connections=500
interactive_timeout=100
wait_timeout=100
connect_timeout=10
thread_cache_size=128
key_buffer=16M
join_buffer=1M
max_allowed_packet=16M
table_cache=1024
record_buffer=1M
sort_buffer_size=2M
read_buffer_size=2M
max_connect_errors=10
# Try number of CPU's*2 for thread_concurrency
thread_concurrency=2
myisam_sort_buffer_size=64M
log-bin
server-id=1

[mysql.server]
user=mysql
basedir=/var/lib

[safe_mysqld]
err-log=/var/log/mysqld.log
#pid-file=/var/lib/mysql/mysql.pid
open_files_limit=8192

[mysqldump]
quick
max_allowed_packet=16M

[mysql]
no-auto-rehash
#safe-updates

[isamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M

[myisamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M

It's a "torrent" site so it get's allot of request last time i get into the phpmyadmin admin account over 150 database request a second and even more on file's. :(

What can i change to speed things up ?
 
You don't need to search for the problem further. How kind of server do you have?

If this is a forum data base, visit this forum and report the number of messages, members, simultaneous visitors number...
 
P4 3.0 Ghz 1024 ram Raptop 36 gb 10.000 rpm

I'ts a torrent tracker 14.000 members not all active 40.000 forum posts around 1000 torrents are in the database. And around 4.000.000 hits's a day most are done by the bittorrent client asking some info from the database.
 
Such websites have to be hosted on a dedicated server. I host all customers with forum with more than 1000 members into dedicated machines...

You can try to optimize mySQL.
 
PHP based trackers are resource hogs. You might try a php optimizer such as TurckMMCache etc. However even seemingly small trackers create an amazing ammount of tax on the server.
 
Back
Top