
|
Anzeige:
|

|

01.08.2007, 02:41
|
|
Registered User
|
|
Registriert seit: 01.2007
Beiträge: 404
|
|
teste mal
Apache
Code:
<IfModule prefork.c>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 125
MaxRequestsPerChild 10000
</IfModule>
Timeout 30
KeepAlive On
MaxKeepAliveRequests 150
KeepAliveTimeout 1
125 *15 MB = 1875 MB RAM bleiben für MySQL noch ~ 125 MB RAM
my.cnf Variables
Code:
# * Fine Tuning
key_buffer = 24M
sort_buffer_size = 256K
myisam_sort_buffer_size = 256K
net_buffer_length = 8K
max_allowed_packet = 32M
read_buffer_size = 128 K
read_rnd_buffer_size = 128K
thread_stack = 128K
thread_cache_size = 256
thread_concurrency = 8
max_connections = 125
table_cache = 2048
low_priority_updates = 1
concurrent_insert = 2
# * Query Cache Configuration
query_cache_limit = 4M
query_cache_size = 24M
# * Logging and Replication
long_query_time = 2
damit liegen wir etwa bei 125 MB RAM
Log slow queries würde ich deaktivieren. Und lass mal Tuning Primer nach 1 Tag laufen.
Wichtig sind
Code:
MAX CONNECTIONS
Historic max_used_connections = 159
und
Code:
MEMORY USAGE
Max Memory Ever Allocated :
Configured Max Memory Limit : 125 M
Configured Max Memory Limit sollte ~ 125 MB sein rofl
Wenn du mehr als 125 max_connections benötigst, solltest du zuerst read_buffer + read_rnd_buffer kleiner machen. Und wenn das nicht reicht auch noch sort_buffer, myisam_sort_buffer kleiner machen. Nach Änderungen MySQL stoppen und neu starten. Höhere table_cache und thread_cache verbessern Performance bei vielen gleichzeitigen Verbindungen.
Code:
service mysqld stop
service mysqld start
Und das hier lesen! Server Tuning by MKDoc.org
Geändert von noto (01.08.2007 um 05:46 Uhr)
|

01.08.2007, 14:49
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
Vielen Dank,
werde ich mal testen und dann nach 1 Tag Bescheid geben, wie es funktioniert...
|

01.08.2007, 22:47
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
Also ich hab die Settings jetzt mal eingegeben, aber mit der my.cnf startet mysql nicht einmal, kommt immer failed...die apache.conf läuft hingegen
EDIT: Es lag augenscheinlich an dem:
read_buffer_size = 128 K
das habe ich rausgenommen und schon gehts...jetzt mal warten was primer morgen sagt
Geändert von FireTurbo (02.08.2007 um 23:05 Uhr)
|

04.08.2007, 13:11
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
So, also ein Tag ist vorbei und nun sagt primer folgendes:
Code:
MySQL Version 5.0.32-Debian_7~bpo.1-log i386
Uptime = 1 days 13 hrs 52 min 1 sec
Avg. qps = 505
Total Questions = 68965328
Threads Connected = 55
Warning: Server has not been running for at least 48hrs.
It may not be safe to use these recommendations
To find out more information on how each of these
runtime variables effects performance visit:
http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html
SLOW QUERIES
Current long_query_time = 2 sec.
You have 773 out of 68969583 that take longer than 2 sec. to complete
The slow query log is enabled.
Your long_query_time seems to be fine
WORKER THREADS
Current thread_cache_size = 256
Current threads_cached = 78
Current threads_per_sec = 0
Historic threads_per_sec = 0
Your thread_cache_size is fine
MAX CONNECTIONS
Current max_connections = 150
Current threads_connected = 46
Historic max_used_connections = 124
The number of used connections is 82% of the configured maximum.
Your max_connections variable seems to be fine.
MEMORY USAGE
Max Memory Ever Allocated : 146 M
Configured Max Per-thread Buffers : 130 M
Configured Max Global Buffers : 38 M
Configured Max Memory Limit : 168 M
Total System Memory : 1.97 G
Max memory limit seem to be within acceptable norms
KEY BUFFER
Current MyISAM index space = 21 M
Current key_buffer_size = 24 M
Key cache miss rate is 1 : 633349
Key buffer fill ratio = 68.00 %
Your key_buffer_size seems to be too high.
Perhaps you can use these resources elsewhere
QUERY CACHE
Query cache is enabled
Current query_cache_size = 4 M
Current query_cache_used = 2 M
Current query_cach_limit = 4 M
Current Query cache fill ratio = 50.86 %
MySQL won't cache query results that are larger than query_cache_limit in size
SORT OPERATIONS
Current sort_buffer_size = 256 K
Current record/read_rnd_buffer_size = 252 K
Sort buffer seems to be fine
JOINS
Current join_buffer_size = 132.00 K
You have had 0 queries where a join could not use an index properly
Your joins seem to be using indexes properly
OPEN FILES LIMIT
Current open_files_limit = 4256 files
The open_files_limit should typically be set to at least 2x-3x
that of table_cache if you have heavy MyISAM usage.
Your open_files_limit value seems to be fine
TABLE CACHE
Current table_cache value = 2048 tables
You have a total of 371 tables
You have 779 open tables.
The table_cache value seems to be fine
TEMP TABLES
Current max_heap_table_size = 16 M
Current tmp_table_size = 64 M
Of 1119653 temp tables, 0% were created on disk
Effective in-memory tmp_table_size is limited to max_heap_table_size.
Created disk tmp tables ratio seems fine
TABLE SCANS
Current read_buffer_size = 128 K
Current table scan ratio = 363 : 1
read_buffer_size seems to be fine
TABLE LOCKING
Current Lock Wait ratio = 1 : 40
You may benefit from selective use of InnoDB.
Meckert also immer noch über den key_buffer obwohl der ja jetzt doch schon sehr klein ist.
Der Seitenaufbau meiner Seite hat sich auch schon etwas verbessert, lahmt aber immer noch ein wenig, positiv zu vermelden ist, dass ich bis jetzt noch keine "zu hohe Serverlast hatte", dafür schon mal ein fettes THX...
|

04.08.2007, 13:56
|
 |
Häuptling der Apachen
|
|
Registriert seit: 09.2003
Ort: Nürnberg
Beiträge: 13.700
|
|
Zitat:
Zitat von FireTurbo
Key buffer fill ratio = 68.00 %
|
Natürlich meckert er darüber. Er hat anhand der Zahlen ja auch recht, oder?
huschi.
|

04.08.2007, 14:06
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
Zitat:
Zitat von Huschi
Natürlich meckert er darüber. Er hat anhand der Zahlen ja auch recht, oder?
huschi.
|
Also soll ich mal auf 18 MB gehen (das wären 75% von den 24, weil ein bisschen Spielraum sollte das Teil ja noch haben oder?) bzw. reißen die 6 MB soviel raus?
|

04.08.2007, 14:11
|
 |
Häuptling der Apachen
|
|
Registriert seit: 09.2003
Ort: Nürnberg
Beiträge: 13.700
|
|
Weil jeder Thread (also jede Connection) sich diesen Speicher sichert.
Hast Du ne aktuelle Speicherauslastung? Was sagt der Swap?
huschi.
|

04.08.2007, 14:19
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
Zitat:
Zitat von Huschi
Weil jeder Thread (also jede Connection) sich diesen Speicher sichert.
Hast Du ne aktuelle Speicherauslastung? Was sagt der Swap?
huschi.
|
Das sind die Werte aus top:
Code:
top - 14:20:09 up 1 day, 20:32, 1 user, load average: 5.77, 7.54, 6.51
Tasks: 119 total, 1 running, 118 sleeping, 0 stopped, 0 zombie
Cpu(s): 49.8% us, 10.5% sy, 0.0% ni, 39.0% id, 0.4% wa, 0.0% hi, 0.2% si
Mem: 2075292k total, 1667548k used, 407744k free, 78936k buffers
Swap: 0k total, 0k used, 0k free, 1210888k cached
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
22256 www-data 16 0 33728 18m 21m S 9 0.9 0:04.05 apache2
22467 www-data 15 0 27316 12m 21m S 7 0.6 0:01.45 apache2
22436 www-data 15 0 25928 10m 21m S 6 0.5 0:02.75 apache2
22357 www-data 15 0 25920 10m 21m S 6 0.5 0:03.30 apache2
22527 www-data 15 0 25928 10m 21m S 6 0.5 0:00.42 apache2
22525 www-data 16 0 25912 10m 21m S 5 0.5 0:00.25 apache2
22280 www-data 15 0 30608 15m 21m S 4 0.8 0:03.73 apache2
22478 www-data 15 0 25932 10m 21m S 4 0.5 0:01.85 apache2
22505 www-data 16 0 25952 10m 21m S 4 0.5 0:01.17 apache2
22395 www-data 16 0 28504 12m 21m S 3 0.6 0:03.12 apache2
22443 www-data 15 0 30640 15m 21m S 3 0.8 0:02.08 apache2
22425 www-data 15 0 30628 15m 21m S 3 0.8 0:03.24 apache2
22013 www-data 16 0 33168 17m 21m S 2 0.9 0:06.75 apache2
22366 www-data 15 0 28596 12m 21m S 2 0.6 0:02.88 apache2
22376 www-data 16 0 33152 17m 21m S 2 0.9 0:03.76 apache2
22387 www-data 16 0 25976 10m 21m S 2 0.5 0:03.19 apache2
22427 www-data 15 0 28516 12m 21m S 2 0.6 0:01.86 apache2
22466 www-data 15 0 25964 10m 21m S 2 0.5 0:01.90 apache2
22497 www-data 16 0 28504 12m 21m S 2 0.6 0:01.04 apache2
22259 www-data 15 0 25932 10m 21m S 2 0.5 0:04.60 apache2
22272 www-data 15 0 25912 10m 21m S 2 0.5 0:04.45 apache2
22431 www-data 16 0 28668 13m 21m S 2 0.6 0:01.97 apache2
22528 www-data 16 0 28416 12m 21m S 2 0.6 0:00.24 apache2
22262 www-data 15 0 28680 13m 21m S 1 0.7 0:03.12 apache2
22379 www-data 16 0 33192 17m 21m S 1 0.9 0:02.80 apache2
17282 root 16 0 15092 2264 6248 S 0 0.1 0:01.76 sshd
1 root 16 0 1496 520 1336 S 0 0.0 0:02.51 init
2 root RT 0 0 0 0 S 0 0.0 0:13.29 migration/0
3 root 34 19 0 0 0 S 0 0.0 0:00.00 ksoftirqd/0
4 root RT 0 0 0 0 S 0 0.0 0:01.92 migration/1
5 root 34 19 0 0 0 S 0 0.0 0:00.00 ksoftirqd/1
6 root RT 0 0 0 0 S 0 0.0 0:10.98 migration/2
7 root 34 19 0 0 0 S 0 0.0 0:00.00 ksoftirqd/2
8 root RT 0 0 0 0 S 0 0.0 0:01.30 migration/3
9 root 34 19 0 0 0 S 0 0.0 0:00.00 ksoftirqd/3
10 root 5 -10 0 0 0 S 0 0.0 0:00.05 events/0
|

06.08.2007, 08:37
|
 |
Häuptling der Apachen
|
|
Registriert seit: 09.2003
Ort: Nürnberg
Beiträge: 13.700
|
|
Aha, eine Virtuelle Maschine ohne Swap. Sicher, daß Dein Apache nicht schon ne Menge an überflüssigen Speicher weg frisst?
Überprüfe Deine Apache-Auslastung mit mod_status im ExtendedStatus.
Ah ja, und nimm die Ausgabe/Vorschläge vom Tuning-Primer-Script nicht zu ernst. Es ist nur ein Programm mit sehr beschränkter Sicht und ohne irgendeinem Ansatz von Intelligenz.
huschi.
|

06.08.2007, 12:00
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
Also das haut das module raus:
Code:
Server Version: Apache
Server Built: Mar 27 2007 15:06:55
Current Time: Monday, 06-Aug-2007 11:58:16 CEST
Restart Time: Monday, 06-Aug-2007 11:53:13 CEST
Parent Server Generation: 0
Server uptime: 5 minutes 3 seconds
Total accesses: 4871 - Total Traffic: 13.0 MB
CPU Usage: u65.64 s5.34 cu.02 cs0 - 23.4% CPU load
16.1 requests/sec - 43.9 kB/second - 2795 B/request
23 requests currently being processed, 9 idle workers
KWWWW_WWK_W_WW___WW_....W.W._.C.....W...W....W..KW._.W..W.......
................................................................
................................................................
................................................................
Scoreboard Key:
"_" Waiting for Connection, "S" Starting up, "R" Reading Request,
"W" Sending Reply, "K" Keepalive (read), "D" DNS Lookup,
"C" Closing connection, "L" Logging, "G" Gracefully finishing,
"I" Idle cleanup of worker, "." Open slot with no current process
Srv PID Acc M CPU SS Req Conn Child Slot Client VHost Request
0-0 30568 1/2/184 K 0.11 0 240 0.0 0.00 0.24 84.161.123.114 projektx.no-ip.biz GET /suggest.php?q=Fantasticfo&bla=1186394297391 HTTP/1.1
1-0 30569 0/4/78 W 0.18 2 0 0.0 0.00 0.16 217.86.109.161 projektx.no-ip.biz GET /index.php HTTP/1.1
2-0 30570 0/5/114 W 0.32 2 0 0.0 0.00 0.17 88.72.174.91 projektx.no-ip.biz GET /announce.php?passkey=65ec9667c0f30ad9&info_hash=3%c7%82%1f
3-0 30527 0/25/132 W 1.27 3 0 0.0 0.01 0.60 217.255.206.63 projektx.no-ip.biz GET /announce.php?passkey=0f9619e803ecada0?info_hash=%2C%E4%CF%
4-0 30575 0/1/98 W 0.07 5 0 0.0 0.00 0.14 84.61.123.15 projektx.no-ip.biz GET /announce.php?passkey=1bed14ed42f38227&info_hash=~%83f%05%a
5-0 30528 0/18/96 _ 0.86 0 10068 0.0 0.04 0.64 84.59.53.88 projektx.no-ip.biz GET /announce.php?passkey=f43110a0468bf3b9&info_hash=%99%02%F7%
6-0 30576 0/1/64 W 0.03 5 0 0.0 0.00 0.13 84.61.123.15 projektx.no-ip.biz GET /announce.php?passkey=1bed14ed42f38227&info_hash=r%9a%90k%9
7-0 30577 0/1/83 W 0.06 5 0 0.0 0.00 0.06 84.61.123.15 projektx.no-ip.biz GET /announce.php?passkey=1bed14ed42f38227&info_hash=%02Z%06%9a
8-0 30578 1/4/78 K 0.26 0 419 0.0 0.00 0.13 84.161.123.114 projektx.no-ip.biz GET /suggest.php?q=Fantasticfou&bla=1186394297204 HTTP/1.1
9-0 30588 0/3/63 _ 0.19 0 94 0.0 0.00 0.09 84.162.147.176 projektx.no-ip.biz GET /scrape.php?passkey=675b35f830d6793a&info_hash=A%E8%16%11%E
10-0 30594 0/1/53 W 0.07 0 0 0.0 0.00 0.51 84.161.123.114 projektx.no-ip.biz GET /suggest.php?q=Fantastic&bla=1186394297766 HTTP/1.1
11-0 30459 0/73/161 _ 2.80 0 52 0.0 0.13 0.27 85.127.16.76 projektx.no-ip.biz GET /login.php HTTP/1.1
12-0 30460 0/42/83 W 1.88 6 0 0.0 0.56 0.61 84.62.52.210 projektx.no-ip.biz GET / HTTP/1.1
13-0 30595 0/0/116 W 0.79 1 0 0.0 0.00 0.32 84.161.123.114 projektx.no-ip.biz GET /suggest.php?q=Fantasticf&bla=1186394297579 HTTP/1.1
14-0 30596 0/0/98 _ 0.06 0 10401 0.0 0.00 0.07 91.9.255.82 projektx.no-ip.biz GET /announce.php?passkey=74a6e01808f21c45?info_hash=%D8%A6%D3w
15-0 30597 0/0/112 _ 0.84 0 117 0.0 0.00 0.14 89.48.56.74 projektx.no-ip.biz GET /announce.php?passkey=fd0f921e02aafd1c&info_hash=%11%14%1a%
16-0 30598 0/0/118 _ 0.49 0 58 0.0 0.00 0.21 ::1 projektx.no-ip.biz GET / HTTP/1.0
17-0 30533 0/21/133 W 1.14 9 0 0.0 0.03 0.66 84.182.246.159 projektx.no-ip.biz GET /announce.php?passkey=cc4e093207ba04c5&info_hash=%dee%26Ja%
18-0 30393 0/71/82 W 3.53 1 0 0.0 0.05 0.07 172.181.189.222 projektx.no-ip.biz GET /announce.php?passkey=6887b0848f53d4d1&info_hash=%c8%14%acw
19-0 30599 0/0/94 _ 0.51 0 36 0.0 0.00 0.66 ::1 projektx.no-ip.biz GET / HTTP/1.0
20-0 - 0/0/76 . 0.42 32 36 0.0 0.00 0.07 ::1 projektx.no-ip.biz GET / HTTP/1.0
21-0 - 0/0/86 . 2.33 24 36 0.0 0.00 0.06 ::1 projektx.no-ip.biz GET / HTTP/1.0
22-0 - 0/0/115 . 3.29 33 38 0.0 0.00 0.57 ::1 projektx.no-ip.biz GET / HTTP/1.0
23-0 - 0/0/83 . 3.36 36 888 0.0 0.00 0.21 85.2.232.184 projektx.no-ip.biz GET /announce.php?passkey=0a7bd02c01d4fc64&info_hash=%92Q%18H%0
24-0 30510 0/38/61 W 2.23 0 0 0.0 0.09 0.10 82.212.54.53 projektx.no-ip.biz GET /server-status HTTP/1.1
25-0 - 0/0/80 . 0.67 18 36 0.0 0.00 0.21 ::1 projektx.no-ip.biz GET / HTTP/1.0
26-0 30537 0/18/82 W 0.99 8 0 0.0 0.03 0.24 80.128.56.119 projektx.no-ip.biz GET /announce.php?passkey=49340f85e870b61a&info_hash=%0b%1bS9%1
27-0 - 0/0/69 . 0.30 47 54 0.0 0.00 0.07 ::1 projektx.no-ip.biz GET / HTTP/1.0
28-0 30512 0/59/98 _ 1.38 0 251 0.0 0.03 0.06 80.144.41.37 projektx.no-ip.biz GET /announce.php?passkey=fec3c9fa7ae675a6?info_hash=%0F%0A%B2%
29-0 - 0/0/51 . 1.57 29 36 0.0 0.00 0.06 ::1 projektx.no-ip.biz GET / HTTP/1.0
30-0 30420 2/63/130 C 3.64 0 0 30.1 0.13 0.28 195.4.48.228 projektx.no-ip.biz GET /pic/smilies/bananadance.gif HTTP/1.1
31-0 - 0/0/47 . 0.80 35 36 0.0 0.00 0.03 ::1 projektx.no-ip.biz GET / HTTP/1.0
32-0 - 0/0/97 . 0.31 43 4092 0.0 0.00 0.12 217.228.96.92 projektx.no-ip.biz GET /announce.php?passkey=146dbdf4b40cbc19&info_hash=%bdt%f2%22
33-0 - 0/0/43 . 1.28 12 36 0.0 0.00 0.06 ::1 projektx.no-ip.biz GET / HTTP/1.0
34-0 - 0/0/50 . 1.58 28 36 0.0 0.00 0.05 ::1 projektx.no-ip.biz GET / HTTP/1.0
35-0 - 0/0/58 . 0.57 30 36 0.0 0.00 0.13 ::1 projektx.no-ip.biz GET / HTTP/1.0
36-0 30542 0/22/88 W 1.00 4 0 0.0 0.01 0.10 84.61.123.15 projektx.no-ip.biz GET /announce.php?passkey=1bed14ed42f38227&info_hash=%7d%ae%ae%
37-0 - 0/0/44 . 0.79 19 36 0.0 0.00 0.11 ::1 projektx.no-ip.biz GET / HTTP/1.0
38-0 - 0/0/83 . 0.77 39 54 0.0 0.00 0.21 ::1 projektx.no-ip.biz GET / HTTP/1.0
39-0 - 0/0/122 . 0.24 49 54 0.0 0.00 0.56 ::1 projektx.no-ip.biz GET / HTTP/1.0
40-0 30475 0/63/87 W 2.46 2 0 0.0 0.07 0.07 91.97.67.242 projektx.no-ip.biz GET /announce.php?passkey=80d5758588cd7349&info_hash=%23%ee%f0%
41-0 - 0/0/40 . 0.75 21 42 0.0 0.00 0.04 ::1 projektx.no-ip.biz GET / HTTP/1.0
42-0 - 0/0/95 . 0.57 27 42 0.0 0.00 0.16 ::1 projektx.no-ip.biz GET / HTTP/1.0
43-0 - 0/0/64 . 1.72 38 93 0.0 0.00 0.54 ::1 projektx.no-ip.biz GET / HTTP/1.0
44-0 - 0/0/107 . 0.08 20 51 0.0 0.00 0.63 ::1 projektx.no-ip.biz GET / HTTP/1.0
45-0 30548 0/26/44 W 1.22 8 0 0.0 0.01 0.02 84.56.91.211 projektx.no-ip.biz GET /announce.php?passkey=113a5f7d88265b16&info_hash=O%1e%89%e9
46-0 - 0/0/99 . 2.68 54 175 0.0 0.00 0.18 ::1 projektx.no-ip.biz GET / HTTP/1.0
47-0 - 0/0/28 . 0.30 37 60 0.0 0.00 0.01 ::1 projektx.no-ip.biz GET / HTTP/1.0
48-0 30435 2/67/91 K 2.89 0 0 8.0 0.13 0.18 212.183.119.149 projektx.no-ip.biz GET /java_klappe.js HTTP/1.1
49-0 30550 0/21/116 W 1.30 8 0 0.0 0.01 1.00 84.56.91.211 projektx.no-ip.biz GET /announce.php?passkey=113a5f7d88265b16&info_hash=%d9%f1%96%
50-0 - 0/0/49 . 1.39 55 60 0.0 0.00 0.13 ::1 projektx.no-ip.biz GET / HTTP/1.0
51-0 30437 0/103/112 _ 3.24 0 225 0.0 0.10 0.11 80.144.41.37 projektx.no-ip.biz GET /announce.php?passkey=fec3c9fa7ae675a6?info_hash=%EB%7DH%23
52-0 - 0/0/56 . 0.37 31 61 0.0 0.00 0.05 ::1 projektx.no-ip.biz GET / HTTP/1.0
53-0 30552 0/29/76 W 1.62 0 0 0.0 0.11 0.22 85.178.204.8 projektx.no-ip.biz GET /scrape.php?passkey=9a03ab763b9662a4&info_hash=%0e%3c-4vYd%
54-0 - 0/0/32 . 0.06 53 0 0.0 0.00 0.09 84.60.119.57 projektx.no-ip.biz GET /pic/diving/menuon.gif HTTP/1.1
55-0 - 0/0/10 . 0.06 52 3736 0.0 0.00 0.00 217.82.232.53 projektx.no-ip.biz GET /announce.php?passkey=1571c8f2cf6748bf&info_hash=%11%14%1a%
56-0 30555 0/20/22 W 1.19 0 0 0.0 0.07 0.07 217.11.53.230 projektx.no-ip.biz GET /announce.php?passkey=942ff3b5fd05f920&info_hash=%C9%81%B0%
57-0 - 0/0/14 . 0.59 248 37 0.0 0.00 0.05 ::1 projektx.no-ip.biz GET / HTTP/1.0
58-0 - 0/0/9 . 0.44 258 36 0.0 0.00 0.02 ::1 projektx.no-ip.biz GET / HTTP/1.0
59-0 - 0/0/23 . 0.97 228 36 0.0 0.00 0.02 ::1 projektx.no-ip.biz GET / HTTP/1.0
60-0 - 0/0/4 . 0.24 278 36 0.0 0.00 0.00 ::1 projektx.no-ip.biz GET / HTTP/1.0
61-0 - 0/0/53 . 2.64 153 62 0.0 0.00 0.14 91.121.76.188 projektx.no-ip.biz GET /scrape.php?passkey=9fb163de706a538e&info_hash=%e8%b2%aa%b2
62-0 - 0/0/10 . 0.22 261 36 0.0 0.00 0.00 ::1 projektx.no-ip.biz GET / HTTP/1.0
63-0 - 0/0/10 . 0.44 255 59 0.0 0.00 0.00 ::1 projektx.no-ip.biz GET / HTTP/1.0
64-0 - 0/0/3 . 0.16 262 10067 0.0 0.00 0.00 91.97.39.71 projektx.no-ip.biz GET /announce.php?passkey=24808350365790cf&info_hash=%20%99%B4%
65-0 - 0/0/3 . 0.15 281 101 0.0 0.00 0.00 ::1 projektx.no-ip.biz GET / HTTP/1.0
66-0 - 0/0/8 . 0.27 264 38 0.0 0.00 0.07 ::1 projektx.no-ip.biz GET / HTTP/1.0
67-0 - 0/0/3 . 0.08 269 0 0.0 0.00 0.00 77.180.133.229 projektx.no-ip.biz GET /pic/smilies/tongue.gif HTTP/1.1
Ich hab auch schon Sysinfo v2.26 probiert aber das krieg ich leider nicht zum Laufen...
EDIT: Achja wegen primer wegen des key buffers sagt er jetzt folgendes:
Code:
KEY BUFFER
Current MyISAM index space = 23 M
Current key_buffer_size = 18 M
Key cache miss rate is 1 : 578068
Key buffer fill ratio = 100.00 %
You could increase key_buffer_size
It is safe to raise this up to 1/4 of total system memory;
assuming this is a dedicated database server.
Dann werd ich halt mal wieder auf 24 gehen *g*
Geändert von FireTurbo (06.08.2007 um 12:04 Uhr)
|

06.08.2007, 12:09
|
 |
Häuptling der Apachen
|
|
Registriert seit: 09.2003
Ort: Nürnberg
Beiträge: 13.700
|
|
Beobachte den Apache-Status zu Zeiten hoher Auslastung. Evtl. kannst Du mehr Speicher mithilfe der MaxClients einsparen.
huschi.
|

06.08.2007, 18:53
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
So also jetzt um diese Uhrzeit haben wir Stoßzeit und das spuckt Sysinfo 2.26 aus bei allen laufenden Prozessen:
Code:
Alle laufende Prozesse:
USER PID %CPU %MEM VSZ TTY STAT START TIME COMMAND
daemon 2068 0.0% 0.0% 1.58 MB ? Ss Aug02 0:00
daemon 2965 0.0% 0.0% 1.71 MB ? Ss Aug02 0:00
ircsrv 4450 0.0% 0.1% 3.86 MB ? S Aug02 1:22
ircsrv 4506 0.0% 0.3% 7.90 MB ? S Aug02 0:11
lp 25107 0.0% 0.0% 2.64 MB ? Ss Aug05 0:00
mysql 12342 0.0% 3.2% 159.07 MB ? Sl Aug04 2:09
nobody 24411 0.0% 0.1% 9.64 MB ? Ss Aug05 0:00
postfix 2767 0.0% 0.0% 3.11 MB ? S Aug02 0:04
postfix 21699 0.0% 0.0% 2.92 MB ? S 18:10 0:00
postfix 24035 0.0% 0.0% 2.93 MB ? S 18:45 0:00
root 1 149% 0.0% 1.46 MB ? S Aug02 8725:55
root 2 0.0% 0.0% 0.00 B ? S Aug02 0:30
root 3 0.0% 0.0% 0.00 B ? SN Aug02 0:00
root 4 0.0% 0.0% 0.00 B ? S Aug02 0:04
root 5 0.0% 0.0% 0.00 B ? SN Aug02 0:00
root 6 0.0% 0.0% 0.00 B ? S Aug02 0:25
root 7 0.0% 0.0% 0.00 B ? SN Aug02 0:00
root 8 0.0% 0.0% 0.00 B ? S Aug02 0:03
root 9 0.0% 0.0% 0.00 B ? SN Aug02 0:00
root 10 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 11 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 12 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 13 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 14 0.0% 0.0% 0.00 B ? S< Aug02 0:13
root 15 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 50 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 51 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 52 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 53 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 63 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 64 0.0% 0.0% 0.00 B ? S Aug02 0:32
root 65 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 66 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 67 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 68 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 69 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 205 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 224 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 225 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 226 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 227 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 228 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 234 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 421 0.0% 0.0% 0.00 B ? S Aug02 0:55
root 714 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 715 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 716 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 717 0.0% 0.0% 0.00 B ? S< Aug02 0:00
root 1056 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 1245 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 1265 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 2495 0.0% 0.0% 2.45 MB ? Ss Aug02 0:03
root 2501 0.0% 0.0% 1.46 MB ? Ss Aug02 0:00
root 2663 0.0% 0.0% 2.55 MB ? Ss Aug02 0:00
root 2755 0.0% 0.0% 3.83 MB ? Rs Aug02 1:05
root 2775 0.0% 0.0% 5.99 MB ? Ss 12:57 0:00
root 2777 0.0% 0.1% 5.79 MB ? Ss 12:57 0:12
root 2840 0.0% 0.0% 2.55 MB ? Ss Aug02 0:00
root 2975 0.0% 0.0% 2.09 MB ? Ss Aug02 0:33
root 3017 0.0% 0.0% 1.46 MB tty1 Ss+ Aug02 0:00
root 3018 0.0% 0.0% 1.46 MB tty2 Ss+ Aug02 0:00
root 3019 0.0% 0.0% 1.46 MB tty3 Ss+ Aug02 0:00
root 3020 0.0% 0.0% 1.46 MB tty4 Ss+ Aug02 0:00
root 3021 0.0% 0.0% 1.46 MB tty5 Ss+ Aug02 0:00
root 3022 0.0% 0.0% 1.46 MB tty6 Ss+ Aug02 0:00
root 3026 0.0% 0.0% 6.14 MB ? Ss Aug05 0:38
root 3033 0.2% 0.1% 5.82 MB pts/0 Ss Aug05 3:54
root 6945 91.6% 0.4% 25.09 MB ? Ss 14:09 257:20
root 7608 0.0% 0.0% 4.88 MB ? Ss Aug04 0:01
root 8538 0.3% 0.0% 2.24 MB pts/0 S+ 14:37 0:51
root 12305 0.0% 0.0% 4.60 MB ? S Aug04 0:00
root 12343 0.0% 0.0% 3.68 MB ? S Aug04 0:00
root 22533 0.0% 0.0% 0.00 B ? S Aug02 0:00
root 26193 0.0% 0.0% 6.30 MB ? Ss Aug05 0:07
root 26263 0.0% 0.0% 3.43 MB ? Ss Aug05 0:00
root 29503 0.0% 0.0% 6.27 MB ? Ss 11:41 0:00
root 29505 0.0% 0.0% 3.24 MB ? Ss 11:41 0:00
root 32140 0.0% 0.0% 3.48 MB ? Ss Aug04 0:31
www-data 23930 1.6% 0.6% 27.88 MB ? S 18:44 0:05
www-data 23932 1.4% 0.8% 32.49 MB ? S 18:44 0:04
www-data 24014 1.9% 0.6% 27.91 MB ? S 18:45 0:05
www-data 24069 1.4% 0.7% 29.93 MB ? S 18:46 0:03
www-data 24096 1.1% 0.6% 27.84 MB ? S 18:46 0:02
www-data 24125 1.6% 0.7% 29.97 MB ? S 18:47 0:03
www-data 24150 1.4% 0.5% 25.35 MB ? S 18:47 0:02
www-data 24157 1.2% 0.5% 25.34 MB ? S 18:48 0:01
www-data 24164 1.5% 0.5% 25.45 MB ? S 18:48 0:01
www-data 24165 1.5% 0.7% 29.95 MB ? S 18:48 0:01
www-data 24166 1.3% 0.6% 28.41 MB ? S 18:48 0:01
www-data 24169 0.8% 0.5% 25.34 MB ? S 18:48 0:01
www-data 24173 1.1% 0.6% 27.57 MB ? S 18:48 0:01
www-data 24175 1.1% 0.6% 27.84 MB ? S 18:48 0:01
www-data 24177 1.6% 0.6% 27.82 MB ? S 18:48 0:01
www-data 24178 1.4% 0.5% 25.36 MB ? S 18:48 0:01
www-data 24181 1.5% 0.7% 29.91 MB ? S 18:48 0:01
www-data 24183 0.8% 0.5% 25.34 MB ? S 18:48 0:00
www-data 24184 1.2% 0.5% 25.32 MB ? S 18:48 0:01
www-data 24186 1.3% 0.5% 25.34 MB ? S 18:48 0:01
www-data 24187 1.2% 0.0% 0.00 B ? Z 18:48 0:01
www-data 24192 0.7% 0.5% 25.36 MB ? S 18:48 0:00
www-data 24195 1.3% 0.7% 29.91 MB ? S 18:48 0:01
www-data 24212 1.4% 0.6% 26.87 MB ? S 18:48 0:01
www-data 24218 1.3% 0.7% 29.93 MB ? S 18:48 0:01
www-data 24219 1.7% 0.5% 25.36 MB ? S 18:48 0:01
www-data 24222 1.3% 0.7% 29.88 MB ? S 18:48 0:01
www-data 24231 1.2% 0.5% 25.54 MB ? S 18:48 0:01
www-data 24238 1.8% 0.8% 32.48 MB ? S 18:48 0:01
www-data 24243 1.4% 0.6% 27.83 MB ? S 18:48 0:01
www-data 24245 1.4% 0.5% 25.37 MB ? S 18:48 0:01
www-data 24246 1.1% 0.5% 25.38 MB ? S 18:48 0:00
www-data 24247 1.0% 0.5% 25.32 MB ? S 18:48 0:00
www-data 24248 0.7% 0.6% 27.39 MB ? S 18:49 0:00
www-data 24249 1.2% 0.5% 25.36 MB ? S 18:49 0:00
www-data 24250 1.1% 0.5% 25.37 MB ? S 18:49 0:00
www-data 24251 1.4% 0.6% 27.89 MB ? S 18:49 0:01
www-data 24252 0.8% 0.5% 25.35 MB ? S 18:49 0:00
www-data 24253 0.7% 0.6% 27.89 MB ? S 18:49 0:00
www-data 24256 1.1% 0.5% 25.37 MB ? S 18:49 0:00
www-data 24257 1.4% 0.9% 32.94 MB ? S 18:49 0:01
www-data 24258 0.8% 0.8% 32.41 MB ? S 18:49 0:00
www-data 24259 1.0% 0.6% 27.86 MB ? S 18:49 0:00
www-data 24262 1.0% 0.5% 25.44 MB ? S 18:49 0:00
www-data 24263 0.8% 0.6% 27.85 MB ? S 18:49 0:00
www-data 24264 0.9% 0.5% 25.34 MB ? S 18:49 0:00
www-data 24266 1.9% 0.7% 29.90 MB ? S 18:49 0:01
www-data 24270 1.2% 0.6% 27.88 MB ? S 18:49 0:00
www-data 24271 1.3% 0.7% 29.92 MB ? S 18:49 0:01
www-data 24273 1.1% 0.5% 25.30 MB ? R 18:49 0:00
www-data 24275 1.0% 0.6% 27.86 MB ? S 18:49 0:00
www-data 24279 1.5% 0.8% 32.42 MB ? S 18:49 0:01
www-data 24282 1.0% 0.5% 25.43 MB ? S 18:49 0:00
www-data 24284 1.0% 0.5% 25.30 MB ? S 18:49 0:00
www-data 24285 1.2% 0.7% 29.90 MB ? S 18:49 0:00
www-data 24286 1.0% 0.5% 25.35 MB ? S 18:49 0:00
www-data 24289 1.0% 0.5% 25.30 MB ? S 18:49 0:00
www-data 24290 1.3% 0.6% 27.63 MB ? S 18:49 0:01
www-data 24291 1.4% 0.6% 28.62 MB ? S 18:49 0:01
www-data 24293 1.6% 0.7% 29.89 MB ? S 18:49 0:01
www-data 24295 1.2% 0.5% 25.32 MB ? S 18:49 0:00
www-data 24297 0.8% 0.5% 25.38 MB ? S 18:49 0:00
www-data 24299 0.7% 0.5% 27.86 MB ? R 18:49 0:00
www-data 24304 1.1% 0.5% 25.35 MB ? R 18:49 0:00
www-data 24344 0.6% 0.5% 25.34 MB ? S 18:49 0:00
www-data 24346 0.8% 0.5% 25.30 MB ? S 18:49 0:00
www-data 24347 2.1% 0.5% 26.62 MB ? R 18:49 0:00
www-data 24368 2.7% 0.6% 27.85 MB ? S 18:50 0:00
www-data 24377 0.0% 0.2% 6.41 MB ? S 18:50 0:00
www-data 24384 0.0% 0.0% 3.00 MB ? S 18:50 0:00
www-data 24385 0.0% 0.0% 2.10 MB ? R 18:50 0:00
www-data 24386 0.0% 0.0% 26.49 MB ? S 18:50 0:00
108 2647 0.0% 0.0% 2.13 MB ? Ss Aug02 0:00
und mod_status labert folgendes:
Code:
Server Version: Apache
Server Built: Mar 27 2007 15:06:55
Current Time: Monday, 06-Aug-2007 18:52:19 CEST
Restart Time: Monday, 06-Aug-2007 14:09:33 CEST
Parent Server Generation: 0
Server uptime: 4 hours 42 minutes 45 seconds
Total accesses: 339765 - Total Traffic: 1.0 GB
CPU Usage: u150.89 s11.73 cu.38 cs0 - .961% CPU load
20 requests/sec - 64.4 kB/second - 3290 B/request
17 requests currently being processed, 75 idle workers
___.._.__CW__W______.___._..._W.__.._W__W._________.W______RW.__
.__..._..___WW__W_.__.K___CW.______.___.C.W__.__.__.__._.__.....
................................................................
................................................................
Scoreboard Key:
"_" Waiting for Connection, "S" Starting up, "R" Reading Request,
"W" Sending Reply, "K" Keepalive (read), "D" DNS Lookup,
"C" Closing connection, "L" Logging, "G" Gracefully finishing,
"I" Idle cleanup of worker, "." Open slot with no current process
Srv PID Acc M CPU SS Req Conn Child Slot Client VHost Request
0-0 24368 0/47/6344 _ 3.05 4 0 0.0 0.10 20.26 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=6%d2K%09%b6%89%93%a
1-0 23930 0/176/6204 _ 8.08 1 84 0.0 0.34 15.91 88.65.169.46 projektx.no-ip.biz GET /scrape.php?passkey=6a66b28055eb51ef&info_hash=%CDh%BD-%92O
2-0 24403 0/23/6380 _ 1.04 1 63 0.0 0.08 22.17 77.180.130.172 projektx.no-ip.biz GET /scrape.php?passkey=5fe539b44eb35c65&info_hash=%fa%5du%1cQS
3-0 - 0/0/6335 . 0.51 8 44 0.0 0.00 20.86 ::1 projektx.no-ip.biz GET / HTTP/1.0
4-0 - 0/0/6279 . 1.90 10 73 0.0 0.00 20.33 ::1 projektx.no-ip.biz GET / HTTP/1.0
5-0 24405 0/31/6243 _ 1.54 4 10415 0.0 0.48 18.74 83.135.199.129 projektx.no-ip.biz GET /announce.php?passkey=2afb4b99af59d655&info_hash=%DD%FB%A0%
6-0 - 0/0/5843 . 1.02 11 53 0.0 0.00 21.01 ::1 projektx.no-ip.biz GET / HTTP/1.0
7-0 24416 0/29/6245 _ 1.38 4 525 0.0 0.27 17.12 84.57.204.189 projektx.no-ip.biz GET /announce.php?passkey=9cba76860c0f38f1&info_hash=%cem%02%f0
8-0 24218 0/112/6345 _ 3.73 1 164 0.0 0.64 20.22 84.62.7.27 projektx.no-ip.biz GET /announce.php?passkey=373515a272391bb0&info_hash=%a6C%b0gu1
9-0 24417 1/20/5788 C 0.93 0 10182 0.2 0.05 18.36 87.123.163.101 projektx.no-ip.biz GET /announce.php?passkey=9613ef94a8158325&info_hash=%5b%e3%28%
10-0 24219 0/71/6203 W 4.14 0 0 0.0 0.16 19.07 82.212.54.53 projektx.no-ip.biz GET /server-status HTTP/1.1
11-0 23932 0/139/5418 _ 5.72 2 215 0.0 0.84 16.77 77.133.22.54 projektx.no-ip.biz GET /announce.php?passkey=2efdd78c2d417eb1&info_hash=-%eeT%c7Mm
12-0 24418 0/13/5832 _ 1.10 0 10210 0.0 0.03 20.34 87.123.73.240 projektx.no-ip.biz GET /announce.php?passkey=30aeed063c789840&info_hash=%EDM%91%F4
13-0 24096 0/82/5351 W 4.45 9 0 0.0 0.14 18.47 91.97.39.71 projektx.no-ip.biz GET /announce.php?passkey=24808350365790cf&info_hash=%3DB%603%2
14-0 24419 0/38/5851 _ 0.85 3 58 0.0 0.08 20.10 88.65.227.250 projektx.no-ip.biz GET /scrape.php?passkey=05309bc585bf5de2&info_hash=%2a%cd%95%07
15-0 24423 0/31/5746 _ 0.94 3 277 0.0 0.11 18.78 85.127.81.104 projektx.no-ip.biz GET /announce.php?passkey=930506bcb18157d5&info_hash=%a5d%84%1f
16-0 24424 0/16/5460 _ 0.97 2 89 0.0 0.01 17.77 85.127.81.104 projektx.no-ip.biz GET /scrape.php?passkey=930506bcb18157d5&info_hash=%a5d%84%1f%1
17-0 24347 0/60/5498 _ 3.30 4 0 0.0 0.12 26.28 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%99d%a9%b8%ec%8a%c1
18-0 24426 0/22/5442 _ 1.18 0 10179 0.0 0.01 14.04 87.123.163.101 projektx.no-ip.biz GET /announce.php?passkey=9613ef94a8158325&info_hash=%e2%92%f6%
19-0 24231 0/55/5446 _ 3.02 2 250 0.0 0.12 19.63 84.138.244.97 projektx.no-ip.biz GET /announce.php?passkey=59dd390c57eea730&info_hash=%df%9f%e5%
20-0 - 0/0/5595 . 1.50 4 1496 0.0 0.00 18.83 213.196.254.185 projektx.no-ip.biz GET /suggest.php?q=harry%20pot&bla=1186418860477 HTTP/1.1
21-0 24449 0/25/5192 _ 0.41 2 139 0.0 0.10 16.41 77.180.130.172 projektx.no-ip.biz GET /announce.php?passkey=5fe539b44eb35c65&info_hash=%fa%5du%1c
22-0 24450 0/9/5574 _ 0.54 2 2997 0.0 0.02 17.93 84.128.76.196 projektx.no-ip.biz GET /announce.php?passkey=7e1d515049dc85e5&info_hash=%14%95%8C%
23-0 24434 0/21/5011 _ 0.83 2 0 0.0 0.04 12.65 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%eb%ae%9cG4%e7%a2%2
24-0 - 0/0/5402 . 1.16 0 61 0.0 0.00 15.04 ::1 projektx.no-ip.biz GET / HTTP/1.0
25-0 24436 0/45/4999 _ 0.54 3 270 0.0 0.10 19.88 82.82.173.99 projektx.no-ip.biz GET /announce.php?passkey=b7ff093c1b274d19&info_hash=%8B%F6C0%1
26-0 - 0/0/5155 . 5.75 3 10243 0.0 0.00 17.14 84.58.244.245 projektx.no-ip.biz GET /announce.php?passkey=d72fe1f739f27ce6?info_hash=%7B%CE%13%
27-0 - 0/0/5221 . 0.66 25 0 0.0 0.00 15.95 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%7e%d1f%b4%da%ea%da
28-0 - 0/0/5008 . 0.83 18 0 0.0 0.00 14.83 82.82.112.249 projektx.no-ip.biz GET /pic/smilies/wink.gif HTTP/1.1
29-0 24165 0/79/4978 _ 3.57 2 0 0.0 0.64 17.11 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%7c%9b0%7b%f7%3e%db
30-0 24439 0/62/4798 W 1.11 2 0 0.0 0.01 15.36 84.134.232.200 projektx.no-ip.biz GET /announce.php?passkey=9f1967c7fe774a89&info_hash=%CA!%AC%2B
31-0 - 0/0/4984 . 0.41 17 57 0.0 0.00 14.84 ::1 projektx.no-ip.biz GET / HTTP/1.0
32-0 24445 0/48/5032 _ 0.64 0 105 0.0 0.07 14.63 91.121.69.125 projektx.no-ip.biz GET /announce.php?passkey=19f4e0124b4fc198&info_hash=%C1%A0%F13
33-0 24446 0/18/4605 _ 1.03 1 97 0.0 0.02 12.52 84.138.244.97 projektx.no-ip.biz GET /scrape.php?passkey=59dd390c57eea730&info_hash=%b3%ae%03%e7
34-0 - 0/0/4910 . 0.37 29 167 0.0 0.00 14.37 91.65.214.226 projektx.no-ip.biz GET /scrape.php?passkey=0e1461748eae1922&info_hash=%b5%a9%0e%fa
35-0 - 0/0/4809 . 0.66 12 265 0.0 0.00 17.95 ::1 projektx.no-ip.biz GET / HTTP/1.0
36-0 24452 0/6/4483 _ 0.63 4 0 0.0 0.05 16.87 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%9d%a3%d6k%e6%c5%40
37-0 24238 0/57/4517 W 3.78 1 0 0.0 0.54 12.23 85.179.238.151 projektx.no-ip.biz GET /userdetails.php?id=39341 HTTP/1.1
38-0 24453 0/9/4451 _ 0.61 0 90 0.0 0.01 10.08 88.76.237.39 projektx.no-ip.biz GET /scrape.php?passkey=d057996ae3e4e02d&info_hash=1%ddY2%0d%93
39-0 24454 0/4/4532 _ 0.26 4 10287 0.0 0.00 13.83 80.242.200.142 projektx.no-ip.biz GET /announce.php?passkey=580a1bbeef8f7c0d?info_hash=%20%D3%B1%
40-0 24455 0/9/3746 W 0.47 5 0 0.0 0.02 12.45 84.58.244.245 projektx.no-ip.biz GET /announce.php?passkey=d72fe1f739f27ce6?info_hash=%DAz%FB%7B
41-0 - 0/0/4363 . 0.42 19 4690 0.0 0.00 12.41 85.178.42.235 projektx.no-ip.biz GET /announce.php?passkey=d125a9ae1e544c7e&info_hash=%be%e9%8a%
42-0 24457 0/14/4207 _ 0.78 0 0 0.0 0.00 13.18 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%01%3c%7cT%da%ff%ab
43-0 24458 0/19/4119 _ 0.27 1 0 0.0 0.06 11.61 77.181.167.118 projektx.no-ip.biz GET /pic/diving/untenmitte.gif HTTP/1.1
44-0 24459 0/7/4090 _ 0.44 2 623 0.0 0.00 11.58 82.83.248.48 projektx.no-ip.biz GET /announce.php?passkey=9e41bf2d2d60883b&info_hash=%23q%18iBH
45-0 24177 0/114/3712 _ 3.19 2 10229 0.0 0.11 10.22 88.68.117.128 projektx.no-ip.biz GET /announce.php?passkey=84d1bcda4f5bf53c&info_hash=D%1E%81%89
46-0 24178 0/75/3658 _ 3.27 3 100 0.0 0.20 11.15 84.57.204.189 projektx.no-ip.biz GET /scrape.php?passkey=9cba76860c0f38f1&info_hash=%cem%02%f0%e
47-0 24460 0/13/3422 _ 0.79 1 5848 0.0 0.00 10.33 88.134.49.233 projektx.no-ip.biz GET /announce.php?passkey=a4942d4da98074f6?info_hash=V%3E%17%CE
48-0 24461 0/8/3454 _ 0.40 0 0 0.0 0.01 10.62 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=Ts_%da%2f%86%cfE%c9
49-0 24462 0/12/3510 _ 0.76 1 208 0.0 0.04 7.97 217.255.190.174 projektx.no-ip.biz GET /announce.php?passkey=c46ec1bb5cf6429f&info_hash=%d8%2bg%2b
50-0 24463 0/21/3057 _ 0.46 3 10809 0.0 0.06 10.99 91.35.105.189 projektx.no-ip.biz GET /announce.php?passkey=24a07415341b9c68?info_hash=eTx%13%29M
51-0 - 0/0/3240 . 0.40 16 375 0.0 0.00 10.40 217.191.66.12 projektx.no-ip.biz GET /scrape.php?passkey=ce278b2c57081620&info_hash=X%f8%13%25%b
52-0 24465 0/8/3088 W 0.46 3 0 0.0 0.00 9.87 87.167.233.152 projektx.no-ip.biz GET /announce.php?passkey=4381663ab3ede4ae&info_hash=%C1%15%E4f
53-0 24183 0/46/3020 _ 2.86 2 167 0.0 0.12 7.08 77.132.2.12 projektx.no-ip.biz GET /announce.php?passkey=2047826481aa06fc&info_hash=6%96%F4%24
54-0 24466 0/6/3425 _ 0.60 2 61 0.0 0.01 9.46 84.138.244.97 projektx.no-ip.biz GET /scrape.php?passkey=59dd390c57eea730&info_hash=%df%9f%e5%ff
55-0 24467 0/24/2680 _ 0.75 3 0 0.0 0.01 6.18 217.235.242.102 projektx.no-ip.biz GET /pic/diving/untenlinks.gif HTTP/1.1
56-0 24468 0/15/2740 _ 0.79 4 82 0.0 0.02 9.98 77.133.51.176 projektx.no-ip.biz GET /scrape.php?passkey=4c3cc9a3745cad4f&info_hash=p%26%dd%99%f
57-0 24469 0/14/2663 _ 0.89 0 210 0.0 0.00 8.31 82.82.233.71 projektx.no-ip.biz GET /announce.php?passkey=504c746e409d5a95&info_hash=eTx%13%29M
58-0 24470 0/10/2327 _ 0.68 2 175 0.0 0.03 9.63 84.149.112.119 projektx.no-ip.biz GET /announce.php?passkey=e4f61a440dcbd5c1&info_hash=%E0%A1%07F
59-0 24471 0/5/2428 R 0.35 2 102 0.0 0.00 6.21 ? ? ..reading..
60-0 24192 0/71/2296 W 3.01 0 0 0.0 0.10 7.22 84.138.244.97 projektx.no-ip.biz GET /announce.php?passkey=59dd390c57eea730&info_hash=%9fG%a4N%b
61-0 - 0/0/2743 . 0.66 5 366 0.0 0.00 8.63 89.247.222.11 projektx.no-ip.biz GET /announce.php?passkey=78aeaa281cca573c&info_hash=%25%0a6%11
62-0 24473 0/12/2233 _ 0.70 6 6868 0.0 0.04 5.32 88.134.49.233 projektx.no-ip.biz GET /announce.php?passkey=a4942d4da98074f6?info_hash=%AC%85a%B7
63-0 24195 0/67/2499 _ 3.49 3 72 0.0 0.73 7.95 84.186.243.30 projektx.no-ip.biz GET /download/25053/Juergen_Drews_-_Verhueterli_%28Ohne_tun_wir
64-0 - 0/0/2329 . 0.35 7 2787 0.0 0.00 6.61 84.128.76.196 projektx.no-ip.biz GET /announce.php?passkey=7e1d515049dc85e5&info_hash=%BC%9E%ECi
65-0 24475 0/9/2183 _ 0.57 2 68 0.0 0.00 7.10 85.127.81.104 projektx.no-ip.biz GET /scrape.php?passkey=23370aa28a0dc272&info_hash=%5b%c8%8e%f3
66-0 24245 0/78/1734 _ 3.17 0 10187 0.0 0.21 5.96 87.123.163.101 projektx.no-ip.biz GET /announce.php?passkey=9613ef94a8158325&info_hash=P%29%3e%b1
67-0 - 0/0/1948 . 0.50 2 40 0.0 0.00 5.63 ::1 projektx.no-ip.biz GET / HTTP/1.0
68-0 - 0/0/1923 . 0.41 6 59 0.0 0.00 5.52 ::1 projektx.no-ip.biz GET / HTTP/1.0
69-0 - 0/0/1703 . 0.27 21 3696 0.0 0.00 5.11 77.181.167.118 projektx.no-ip.biz GET /logout.php HTTP/1.1
70-0 24479 0/10/1548 _ 0.67 0 65 0.0 0.01 5.21 ::1 projektx.no-ip.biz GET / HTTP/1.0
71-0 - 0/0/1411 . 2.48 9 60 0.0 0.00 2.79 ::1 projektx.no-ip.biz GET / HTTP/1.0
72-0 - 0/0/1475 . 2.67 30 1073 0.0 0.00 4.91 85.178.164.242 projektx.no-ip.biz GET /announce.php?passkey=2910d9bf62bcb758&info_hash=%85%de%3a%
73-0 24484 0/8/1136 _ 0.47 0 0 0.0 0.00 3.70 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%c1%af%90%19%85%20t
74-0 24485 0/7/1250 _ 0.43 0 183 0.0 0.00 3.78 80.134.51.196 projektx.no-ip.biz GET /announce.php?passkey=02f6032a18d7e346&info_hash=Y%cfd%ee%0
75-0 24488 0/10/1041 _ 0.54 2 102 0.0 0.00 2.98 84.144.212.131 projektx.no-ip.biz GET /scrape.php?passkey=ed79c58a11a844fb&info_hash=A%24%12p%e1%
76-0 24490 0/10/1077 W 0.65 2 0 0.0 0.03 2.93 84.134.232.200 projektx.no-ip.biz GET /announce.php?passkey=9f1967c7fe774a89&info_hash=%EF%DBn%07
77-0 24491 0/20/1145 W 0.72 1 0 0.0 0.01 3.43 62.224.120.108 projektx.no-ip.biz GET /index.php HTTP/1.1
78-0 24524 0/17/1155 _ 0.25 3 0 0.0 0.00 3.06 217.235.242.102 projektx.no-ip.biz GET /pic/diving/untenrechts.gif HTTP/1.1
79-0 24493 0/12/1243 _ 0.67 0 96 0.0 0.00 5.15 80.134.51.196 projektx.no-ip.biz GET /scrape.php?passkey=02f6032a18d7e346&info_hash=Y%cfd%ee%06%
80-0 24494 0/14/948 W 0.84 4 0 0.0 0.01 3.13 91.12.204.216 projektx.no-ip.biz GET /announce.php?passkey=cacd8ddbcaffdbed&info_hash=%80%AE3TxC
81-0 24495 0/4/1283 _ 0.29 3 10695 0.0 0.00 3.89 84.138.53.171 projektx.no-ip.biz GET /announce.php?passkey=fda2509a057e557e?info_hash=%1E%3E%18%
82-0 - 0/0/1094 . 0.41 27 260 0.0 0.00 3.85 84.62.190.6 projektx.no-ip.biz GET /scrape.php?passkey=c085079b48d12d5a&info_hash=%5d%f0.%f1%2
83-0 24498 0/10/1391 _ 0.47 2 57 0.0 0.00 6.02 77.133.22.54 projektx.no-ip.biz GET /scrape.php?passkey=2efdd78c2d417eb1&info_hash=-%eeT%c7Mm%1
84-0 24525 0/2/851 _ 0.50 2 105 0.0 0.01 2.12 84.144.212.131 projektx.no-ip.biz GET /scrape.php?passkey=ed79c58a11a844fb&info_hash=%b8%17N%a9%5
85-0 - 0/0/891 . 2.49 26 381 0.0 0.00 1.85 77.180.35.167 projektx.no-ip.biz GET /scrape.php?passkey=4aec537461d15453&info_hash=%14%ca%03d%d
86-0 24499 1/9/761 K 0.53 0 493 14.6 0.02 2.45 84.134.152.136 projektx.no-ip.biz GET /users.php?search=peace&class=- HTTP/1.1
87-0 24266 0/67/774 _ 3.46 0 10085 0.0 0.21 2.25 84.58.244.245 projektx.no-ip.biz GET /announce.php?passkey=d72fe1f739f27ce6?info_hash=%8B%F0%5B%
88-0 24500 0/9/787 _ 0.65 0 109 0.0 0.01 2.34 87.123.163.101 projektx.no-ip.biz GET /scrape.php?passkey=9613ef94a8158325&info_hash=P%29%3e%b1P%
89-0 24501 0/9/558 _ 0.52 0 149 0.0 0.00 1.93 87.123.163.101 projektx.no-ip.biz GET /scrape.php?passkey=9613ef94a8158325&info_hash=%e2%92%f6%81
90-0 24502 0/9/896 _ 0.47 0 141 0.0 0.00 3.51 84.149.112.119 projektx.no-ip.biz GET /announce.php?passkey=e4f61a440dcbd5c1&info_hash=%60%88%24%
91-0 24270 1/54/561 K 2.78 0 828 16.8 0.19 2.41 89.48.209.66 projektx.no-ip.biz GET /casino.php HTTP/1.1
92-0 - 0/0/699 . 0.61 14 382 0.0 0.00 2.11 91.33.201.205 projektx.no-ip.biz GET /scrape.php?passkey=4608bf8d55bd4de6&info_hash=56zA%af-%22Q
93-0 24504 0/11/584 _ 0.71 1 198 0.0 0.00 1.07 84.138.244.97 projektx.no-ip.biz GET /announce.php?passkey=59dd390c57eea730&info_hash=%b3%ae%03%
94-0 24505 0/21/899 _ 0.50 1 0 0.0 0.14 3.32 77.181.167.118 projektx.no-ip.biz GET /pic/diving/obenmitte.gif HTTP/1.1
95-0 24506 0/5/565 _ 0.29 1 177 0.0 0.02 1.92 88.76.237.39 projektx.no-ip.biz GET /announce.php?passkey=d057996ae3e4e02d&info_hash=1%ddY2%0d%
96-0 24275 0/56/659 _ 2.54 3 0 0.0 0.08 1.61 84.184.129.142 projektx.no-ip.biz GET /tracker%20113?info_hash=%8c%1a%0cL%d7%a7L%dc%9f%2e%1c%e1%2
97-0 24507 0/11/497 _ 0.57 4 0 0.0 0.01 2.60 217.235.242.102 projektx.no-ip.biz GET /bitbucket/55789d886f4349ac1a64133803b8e404.jpg HTTP/1.1
98-0 24508 0/5/454 _ 0.27 0 764 0.0 0.03 1.08 85.177.255.229 projektx.no-ip.biz GET /announce.php?passkey=471c45e9aa4ac6fc&info_hash=%F8%BD7%F3
99-0 - 0/0/431 . 0.53 1 37 0.0 0.00 2.10 ::1 projektx.no-ip.biz GET / HTTP/1.0
100-0 24279 0/56/268 _ 3.70 4 0 0.0 0.62 1.54 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%07%d9%84n%f4%c4%92
101-0 24510 0/9/483 _ 0.45 0 0 0.0 0.02 1.76 80.143.106.140 projektx.no-ip.biz GET /bitbucket/55789d886f4349ac1a64133803b8e404.jpg HTTP/1.1
102-0 24511 0/8/452 _ 0.45 1 144 0.0 0.00 1.10 217.232.115.109 projektx.no-ip.biz GET /announce.php?passkey=543d13f0bfa62948&info_hash=c%1b%ff%a2
103-0 - 0/0/288 . 2.55 15 1171 0.0 0.00 0.40 ::1 projektx.no-ip.biz GET / HTTP/1.0
104-0 24512 1/8/398 C 0.53 0 141 0.3 0.02 1.14 83.78.127.188 projektx.no-ip.biz GET /announce.php?passkey=d48e77aa8617be62&info_hash=%00%d83%26
105-0 - 0/0/490 . 0.15 31 1169 0.0 0.00 0.81 77.181.125.213 projektx.no-ip.biz GET /scrape.php?passkey=cbdcc1820dcd65fa&info_hash=%29%dc%06%28
106-0 24514 0/10/196 W 0.69 1 0 0.0 0.01 0.82 84.61.145.32 projektx.no-ip.biz GET /announce.php?passkey=5d9fcfd88aa244d2&info_hash=%d85f%01%d
107-0 24286 0/72/309 _ 3.08 3 1222 0.0 0.22 0.83 85.177.255.229 projektx.no-ip.biz GET /announce.php?passkey=471c45e9aa4ac6fc&info_hash=V%3E%17%CE
108-0 24515 0/55/258 _ 0.84 3 191 0.0 0.01 0.66 84.57.204.189 projektx.no-ip.biz GET /announce.php?passkey=9cba76860c0f38f1&info_hash=-%a8h%85%0
109-0 - 0/0/144 . 0.33 13 259 0.0 0.00 0.22 85.178.42.235 projektx.no-ip.biz GET /scrape.php?passkey=d125a9ae1e544c7e&info_hash=%92Q%18H%0c%
110-0 24289 0/56/350 _ 1.82 2 0 0.0 0.15 1.26 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%8d%88%95%1c%92%a9%
111-0 24517 0/7/218 _ 0.45 3 85 0.0 0.01 1.01 172.158.80.135 projektx.no-ip.biz GET /scrape.php?passkey=ec4215a1802dea20&info_hash=w%04%A2%BD%E
112-0 - 0/0/333 . 2.33 28 2460 0.0 0.00 0.48 91.65.214.226 projektx.no-ip.biz GET /announce.php?passkey=0e1461748eae1922&info_hash=k%f7%a3%24
113-0 24518 0/29/108 _ 0.54 2 61 0.0 0.14 1.10 87.176.161.177 projektx.no-ip.biz GET /scrape.php?passkey=7f73b2bf143cbaf5&info_hash=%14%CA%03d%D
114-0 24293 0/88/133 _ 2.51 4 5268 0.0 0.21 0.36 88.134.49.233 projektx.no-ip.biz GET /announce.php?passkey=a4942d4da98074f6?info_hash=%07%20%E5%
115-0 - 0/0/95 . 0.25 23 113 0.0 0.00 0.13 89.166.150.56 projektx.no-ip.biz GET /scrape.php?passkey=c3609bd6c682b8dd&info_hash=%82%F7%E8%9C
116-0 24295 0/60/150 _ 2.80 1 85 0.0 0.17 0.21 217.255.190.174 projektx.no-ip.biz GET /scrape.php?passkey=c46ec1bb5cf6429f&info_hash=%d8%2bg%2b%9
117-0 24526 0/8/219 _ 0.50 0 0 0.0 0.00 0.47 84.140.236.239 projektx.no-ip.biz GET /announcefd9cb9f412f46eb2.php?info_hash=%80%af%b4%c0%29%c2P
118-0 - 0/0/221 . 2.28 20 549 0.0 0.00 0.85 85.25.145.99 projektx.no-ip.biz GET /scrape.php?passkey=cf82fff1e63718ed&info_hash=%f8z%1c%b0l%
119-0 24527 0/5/122 _ 0.27 0 10135 0.0 0.00 0.15 82.144.43.8 projektx.no-ip.biz GET /announce.php?passkey=a91d019a8ca62cc1?info_hash=%D8P%25%C3
120-0 - 0/0/168 . 0.26 24 116 0.0 0.00 0.69 ::1 projektx.no-ip.biz GET / HTTP/1.0
121-0 24529 0/7/38 _ 0.37 3 275 0.0 0.00 0.01 85.127.81.104 projektx.no-ip.biz GET /announce.php?passkey=23370aa28a0dc272&info_hash=%5b%c8%8e%
122-0 24530 0/20/110 _ 0.78 0 96 0.0 0.09 0.77 82.82.233.71 projektx.no-ip.biz GET /scrape.php?passkey=504c746e409d5a95&info_hash=eTx%13%29M%a
123-0 - 0/0/96 . 0.10 183 0 0.0 0.00 0.69 91.64.72.215 projektx.no-ip.biz GET /pic/blue_mx/cellpic.gif HTTP/1.1
124-0 - 0/0/6 . 0.22 172 89 0.0 0.00 0.00 ::1 projektx.no-ip.biz GET / HTTP/1.0
Srv Child Server number - generation
PID OS process ID
Acc Number of accesses this connection / this child / this slot
M Mode of operation
CPU CPU usage, number of seconds
SS Seconds since beginning of most recent request
Req Milliseconds required to process most recent request
Conn Kilobytes transferred this connection
Child Megabytes transferred this child
Slot Total megabytes transferred this slot
|

06.08.2007, 20:23
|
 |
Häuptling der Apachen
|
|
Registriert seit: 09.2003
Ort: Nürnberg
Beiträge: 13.700
|
|
Wie man sieht sind die Hälfte der Apache-MaxClients gar nicht genutzt!
Ca. 2/3 aller Apache-Childs dümpel nur als "Waiting for Connection" vor sich hin.
Fazit:
MaxClients runter ziehen, aber vorallem noch den Status über längere Zeit beobachten. Du solltest ca. 1/4 bis 1/3 mind. als "." oder als "_" haben.
Muß aber nicht!
Falls Deine MySQL-Datenbank mehr Speicher braucht um Abfragen abzuarbeiten dann solltest den Speicher vom Apache dahin verlagern. Requests, die nicht sofort mithilfe von Apache-Clients abgearbeitet werden gehen schließlich nicht verloren, sondern stehen in einer Warteschlange an.
huschi.
|

09.08.2007, 01:52
|
|
Registered User
|
|
Registriert seit: 07.2007
Beiträge: 9
|
|
THX ich teste gerade mit 75 MaxClients und es sieht recht gut aus von dehr ein riesiges Dankeschön...
Was mich jedoch noch interessieren würde:
Ich habe ja so wie es aussieht kein swap, würde das die Performance noch verbessern, wenn ich das hätte bzw. ist es möglich noch nachträglich ne swap einzurichten?
In der fstab steht die swap komischerweise drin:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda / ext3 defaults,errors=remount-ro 0 1
/dev/hda5 none swap sw 0 0
/dev/hdd /media/cdrom0 iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
/dev/sdb /vol1 ext3 defaults 0 0
komisch ist hierbei auch, dass ich eigentlich 2 SATA Platten habe eine davon jedoch als hda anstatt sda angezeigt wird...
|

09.08.2007, 09:01
|
 |
Häuptling der Apachen
|
|
Registriert seit: 09.2003
Ort: Nürnberg
Beiträge: 13.700
|
|
Warum bei Dir kein Swap angezeigt wird, weiß ich nicht.
Schau halt mal mit fdisk nach, ob er korrekt markiert und eingerichtet ist.
Wenn ja test mal "swapon".
Aber Swap ist hierbei nicht gleich größerer Speicher!!!
Denn sobald die Maschine aktive Programme (wie MySQL oder Apache) in den Swap auslagert hast Du wieder Probleme.
Deine SATA-Platten erscheinen grundsätzlich als /dev/hda und /dev/hdb.
Erst ein RAID würd ein /dev/sda erscheinen lassen.
huschi.
|
| Themen-Optionen |
|
|
| Thema bewerten |
|
|
Forumregeln
|
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.
HTML-Code ist aus.
|
|
|
|

|

|
 |

|
Alle Zeitangaben in WEZ +2. Es ist jetzt 00:24 Uhr.
|