- - PR -
IPTables log analyzer について
1
投稿者 | 投稿内容 |
---|---|
|
投稿日時: 2008-11-24 16:17
はじめまして。
IPTables log analyzer を導入したいのですが 導入に失敗している状態で悩んでいます。 ■環境 Vine Linux 4.2 MYSQL ・MySQL-shared-5.0.27-0vl6 ・MySQL-client-5.0.27-0vl6 ・MySQL-devel-5.0.27-0vl6 ・MySQL-server-5.0.27-0vl6 ・MySQL-bench-5.0.27-0vl6 ・MySQL-Max-5.0.27-0vl6 PHP ・php5-5.2.6-2vl4 ・php5-devel-5.2.6-2vl4 ・php5-pdo-5.2.6-2vl4 ・php5-apache2-5.2.6-2vl4 ・php5-pear-5.2.6-2vl4 ・php5-mysql-5.2.6-2vl4 ・php5-ldap-5.2.6-2vl4 ulogd ・ulogd-1.24-9 ・ulogd-pcap-1.24-9 ・ulogd-mysql-1.24-9 ■エラー内容(apacheのログ内容) PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cookie - headers already sent by (output started at /web/iptablelog/utils/db_mysql.php:1) in /web/iptablelog/utils/Context.php on line 89 PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /web/iptablelog/utils/db_mysql.php:1) in /web/iptablelog/utils/Context.php on line 89 PHP Notice: Undefined variable: display_netfilter_srcport_default in /web/iptablelog/utils/Context.php on line 149 PHP Fatal error: Call to undefined function db_connect() in /web/iptablelog/conf/config.php on line 137 ■エラー内容(IPTables log analyzer起動すると以下になります) tags from a db query function db_listbox ( $value_field, // field to use for label $label_field, // field to use for LABEL $query, // database query $default="" // options with this value are selected by default, can be a scalar or a list ) { $output = ""; $result = db_query($query); while ($r = db_nextarray($result)) { $value = $r[$value_field]; $label = $r[$label_field]; if (is_array($default)) $selected = empty($default[$value]) ? "" : "selected"; else $selected = $value == $default ? "selected" : ""; $output .= "$label\n"; } return $output; } /* Release resources taken up by a query */ function db_freeresult($result) { mysql_free_result($result); } /* display a db error message */ function db_handleError($detail) { $msg = "$detail\n"; $msg = $detail."\n"."Mysql error : ".mysql_errno()." - ".mysql_error(); die ($msg); } ?> Vine Linux 4.2 で、iptablelog-v0.9.tar.bz2 を使用しての 構築出来た方いますでしょうか。 宜しくお願い致します。 |
1