|
Revision 8749, 1.4 kB
(checked in by abray, 8 months ago)
|
|
adding line breaks at 80 Char to all install instructionsm
|
| Line | |
|---|
| 1 | FreeBSD 6.1-RELEASE Installation Instructions |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | Installation Technique: Manual Install |
|---|
| 5 | |
|---|
| 6 | 1. Login as root, run sysinstall, configure dhcp networking |
|---|
| 7 | |
|---|
| 8 | # sysinstall |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | 2. Add the following /etc/fstab |
|---|
| 12 | |
|---|
| 13 | proc /proc procfs rw 0 0 |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | 3. Reboot to get a network and procfs. Add in some needed packages: |
|---|
| 17 | |
|---|
| 18 | pkg_add -r bash pkg_add -r gmake pkg_add -r sudo pkg_add -r python pkg_add -r |
|---|
| 19 | mysql50-server mysql50-client pkg_add -r net-snmp pkg_add -r patch |
|---|
| 20 | |
|---|
| 21 | Or, install portinstall, and install the needed packages via the ports system |
|---|
| 22 | (which will also automatically resolve any dependencies): ie: portinstall -R |
|---|
| 23 | <bash> |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | 4. Edit /usr/local/etc/sudoers as per typical Zenoss instructions. I normally |
|---|
| 27 | just uncomment the wheel line with NOPASSWD. |
|---|
| 28 | |
|---|
| 29 | # adduser zenoss |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | 5. Add to zenoss to the wheel group. Use /usr/local/bin/bash as shell. |
|---|
| 33 | Configure snmpd: |
|---|
| 34 | |
|---|
| 35 | # cp /usr/local/share/net-snmp.conf.example \ /usr/local/etc/snmp/snmpd.conf |
|---|
| 36 | |
|---|
| 37 | Change "localhost" to be "default", "COMMUNITY" to be "public". |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | 6. Add in these lines to rc.conf: |
|---|
| 41 | |
|---|
| 42 | snmpd_enable="YES" snmpd_flags="-a -p /var/run/snmpd.pid" syslog_enable="NO" |
|---|
| 43 | mysql_enable="YES" |
|---|
| 44 | |
|---|
| 45 | # mkdir /usr/local/zenoss # chown -R zenoss /usr/local/zenoss |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | 7. Reboot to start/stop all servers. Login as the zenoss user, install zenoss |
|---|
| 49 | either from the tarball or SVN. If you install from svn, you need to add |
|---|
| 50 | subversion: |
|---|
| 51 | |
|---|
| 52 | # pkg_add -r subversion |
|---|
| 53 | |
|---|
| 54 | Again, you can use portinstall -R to resolve dependencies (and sub- version has |
|---|
| 55 | a few) |
|---|
| 56 | |
|---|