技術」カテゴリーアーカイブ

webalizerのmakeでエラー

ja-webalizer-2.23.4_1 を portsから makeするときに gd library not found.. please install libgd と出てエラーストップする。

http://www.pc-freak.net/blog/how-to-fix-configure-error-gd-library-not-found-please-install-libgd-during-webalizer-port-make-on-freebsd/

のページの方法でうまくいきました。

#cd /usr/ports/graphics/gd/
#portmaster .
#make
#make install

の後、webalizer をmake

SSL証明書インストールでIEで見ると「Internet Explorer ではこのページは表示できません」となる。

となったので、さんざん調べたですがわからずFireFoxで該当ページを表示させてみると、

SSL received a record that exceeded the maximum permissible length.
(エラーコード: ssl_error_rx_record_too_long)

と表示されます。

で調べてみると、

httpd-vhosts.confの方の設定の :80をきちんと書いていないとこの現象が出るそうです。
httpd-ssl.confばっかり悩んでました。。。

NameVirtualHost xxx.xxx.xxx.xxx:80
<VirtualHost xxx.xxx.xxx.xxx:80>

でバッチしなおりました。