NicToolServer Dependencies

NicTool requires Apache, mod_perl, and a few perl modules to be installed.

I shall present two ways to install them, via CPAN, and via ports (for Free/Net/OpenBSD). If ports is available, it is preferred.

  perl -MCPAN -e shell
  install LWP
  install RPC::XML
  install SOAP::Lite
  install DBI
  install DBD::mysql
  install Apache2::SOAP

or

  cd /usr/ports/www/p5-libwww
  make install clean
  cd /usr/ports/net/p5-SOAP-Lite
  make install clean
  cd /usr/ports/net/p5-RPC-XML
  make install clean
  cd /usr/ports/databases/p5-DBI
  make install clean
  cd /usr/ports/databases/p5-DBD-mysql
  make install clean