歩行訓練

おいっちにー!

メモ

Eclipse で Gradle さんで JAVA_HOME

eclipse で gradle を触っていた時に Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory. と言われ、JAVA_HOMEは設定してるだ…

古いアパッチをなんとかチューニングする4 カーネルパラ触るだけ

カーネルパラメータをいじる デフォルトままの設定。 mpmもデフォルト <IfModule mpm_worker_module> StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0</IfModule> 1 Concurrency Level: 100Time taken for tests: 38.576 secondsCom…

古いアパッチをなんとかチューニングする3

やりなおし prefork から # /usr/local/httpd-2.2.16/bin/httpd -lCompiled in modules: core.c prefork.c http_core.c mod_so.c 1 Concurrency Level: 100Time taken for tests: 6.144 secondsComplete requests: 1000Failed requests: 119 (Connect: 0, Re…

古いアパッチをなんとかチューニングする2

woker mpm でなんとかする。event 使いたい。 httpd.conf のコメントを削る # Server-pool management (MPM specific)Include conf/extra/httpd-mpm.conf extra/httpd-mpm.conf <IfModule mpm_worker_module> StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 Threa</ifmodule>…

古いアパッチをなんとかチューニングする1

現状を ab で測る(prefork mpm) C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin>ab -n 1000 -c 100 http://xxxxxxxxxxxxxxxxxxxxxxThis is ApacheBench, Version 2.3 <$Revision: 655654 $>Copyright 1996 Adam Twiss, Zeus Technology L…