2006-02-23から1日間の記事一覧

ユーザ追加方法

grant all privileges on *.* to monty@localhost identified by 'password' with grant option; grant all privileges on *.* to monty@'%' identified by 'password' with grant option; パスワード変更 # mysqladmin -u root -p12345 -hlocalhost passwor…

アクセスログのフィルタ方法

/etc/httpd/conf/httpd.conf の中を以下のように修正。例:CSSファイル、画像ファイル、JavaScriptなどをフィルタする場合。 SetEnvIf Request_URI "^/wm/css/" dontlog SetEnvIf Request_URI "^/wm/img/" dontlog SetEnvIf Request_URI "^/wm/js/" dontlog …