root/trunk/inst/docs/INSTALL_FreeBSD62.txt

Revision 8749, 1.7 kB (checked in by abray, 8 months ago)
adding line breaks at 80 Char to all install instructionsm
Line 
1FreeBSD 6.2-RELEASE Installation Instructions
2
3Installation Technique: Manual Install
4
51.  Login as root, run sysinstall, configure dhcp networking
6
7# sysinstall
8
9
102.  Add the following /etc/fstab
11
12proc     /proc     procfs     rw     0     0
13
14
153.  Reboot to get a network and procfs.  Add in some needed packages:
16
17pkg_add -r bash ln -s /usr/local/bin/bash /bin pkg_add -r gmake pkg_add -r sudo
18pkg_add -r python pkg_add -r mysql50-server mysql50-client pkg_add -r net-snmp
19pkg_add -r patch pkg_add -r swig pkg_add -r autoconf259
20
21
224.  Edit /usr/local/etc/sudoers as per typical Zenoss instructions.  I normally
23just uncomment the wheel line with NOPASSWD.
24
25# adduser zenoss
26
27
285.  Add to zenoss to the wheel group. Use /usr/local/bin/bash as shell.
29Configure snmpd:
30
31# cp /usr/local/share/snmp/snmp.conf.example \ /usr/local/etc/snmp/snmpd.conf
32
33Change "localhost" to be "default", "COMMUNITY" to be "public".
34
35
366.  Add in these lines to rc.conf:
37
38snmpd_enable="YES" snmpd_flags="-a -p /var/run/snmpd.pid" syslog_enable="NO"
39mysql_enable="YES"
40
41# mkdir /usr/local/zenoss # chown -R zenoss /usr/local/zenoss
42
43
447.  Reboot to start/stop all servers. Login as the zenoss user, install zenoss
45either from the tarball or SVN.  If you install from svn, you need to add
46subversion:
47
48# pkg_add -r subversion
49
508.  Follow the instructions for a source-based svn install.
51
529.  There's a problem building the nagios plugins.  See this thread on the
53Zenoss community web site for fixes:
54
55http://community.zenoss.com/forums/viewtopic.php?p=4314&sid=
560dbfb5d7ef70df79c2ee41d4c0de4a51
57
5810. There's a problem loading libnetsnmp.so in Zope.  The workaround is to add
59this line to the top of the $ZENOSS/bin/zenfunctions script:
60
61export LD_PRELOAD=/lib/libcrypto.so.4
Note: See TracBrowser for help on using the browser.