歩行訓練

おいっちにー!

2015-04-01から1ヶ月間の記事一覧

Materialize の Fixed Action Button で文字を横にだしたいけど、どうにも出ないので気合でなんとかそれっぽくするメモ。

Materialize の Fixed Action Button で文字を横にだしたいけど、どうにも出ないので気合でなんとかそれっぽくするメモ。 (気合で)こんな感じになった

Materializeにナビバーに挑む

Materializeにナビバーに挑む。 Documentation - Materializematerializecss.com

Media wikiを別サーバに移行したら元のサーバにリダイレクトしたのをなんとかした

IPが別のサーバにMediaWikiを移転したらどうも元のサーバにリダイレクトされるといわれた。 ドメインはIP直なので、とりあえずそのIPでドキュメントルートあたりをgrepしてみるとに。 [root@hoge html]# grep 古いIP *LocalSettings.php:$wgServer = "http:/…

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は設定してるだ…

さてhttpd.conf をいじる KeepAlive OnMaxKeepAliveRequests 30KeepAliveTimeOut 1 1 Concurrency Level: 100Time taken for tests: 46.054 secondsComplete requests: 10000Failed requests: 579 (Connect: 0, Receive: 0, Length: 579, Exceptions: 0)Writ…

古いアパッチをなんとかチューニングする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…