Gentoo Archives: gentoo-doc-cvs

From: Joshua Saddler <nightmorph@××××××××××××.org>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] cvs commit: jffnms.xml
Date: Tue, 18 Mar 2008 04:31:00
Message-Id: E1JbTTV-0001aH-Pp@stork.gentoo.org
1 nightmorph 08/03/18 04:30:57
2
3 Modified: jffnms.xml
4 Log:
5 updated for bug 186406, see comment 9
6
7 Revision Changes Path
8 1.9 xml/htdocs/doc/en/jffnms.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/jffnms.xml?rev=1.9&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/jffnms.xml?rev=1.9&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/jffnms.xml?r1=1.8&r2=1.9
13
14 Index: jffnms.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/jffnms.xml,v
17 retrieving revision 1.8
18 retrieving revision 1.9
19 diff -u -r1.8 -r1.9
20 --- jffnms.xml 11 Oct 2007 20:07:45 -0000 1.8
21 +++ jffnms.xml 18 Mar 2008 04:30:57 -0000 1.9
22 @@ -1,6 +1,6 @@
23 <?xml version="1.0" encoding="UTF-8"?>
24 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/jffnms.xml,v 1.8 2007/10/11 20:07:45 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/jffnms.xml,v 1.9 2008/03/18 04:30:57 nightmorph Exp $ -->
27
28 <guide link="/doc/en/jffnms.xml" lang="en">
29 <title>Jffnms Installation and Setup Guide</title>
30 @@ -19,8 +19,8 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>1.4</version>
35 -<date>2007-10-11</date>
36 +<version>1.5</version>
37 +<date>2008-03-17</date>
38
39 <chapter>
40 <title>Jffnms Basics</title>
41 @@ -251,8 +251,6 @@
42
43 <pre caption="Adding PostgreSQL to the default runlevel">
44 # <i>rc-update add postgresql default</i>
45 - * postgresql added to runlevel default
46 - * rc-update complete.
47 </pre>
48
49 <p>
50 @@ -279,28 +277,22 @@
51
52 <p>
53 Once you have your PostgreSQL set up and running, you have to create a Jffnms
54 -user and a database to store host data. We provide files to do both.
55 +user and a database to store host data.
56 </p>
57
58 -<note>
59 -If you don't use <path>/usr/portage</path> as your Portage dir ($PORTDIR) you
60 -have to change the last part of these commands to whatever your Portage dir
61 -is.
62 -</note>
63 -
64 -<pre caption="Creating Jffnms user">
65 -# <i>psql template1 postgres &lt; /usr/portage/net-analyzer/jffnms/files/postgresql_db</i>
66 -</pre>
67 -
68 -<pre caption="Creating Jffnms database">
69 -# <i>psql template1 postgres &lt; /usr/portage/net-analyzer/jffnms/files/postgresql_db_table</i>
70 +<pre caption="Creating the Jffnms user and database">
71 +# <i>psql template1 postgres</i>
72 +template1=# <i>create user jffnms password 'jfnms' createdb;</i>
73 +template1=# <i>\connect template1 jffnms</i>
74 +template1=# <i>create database jffnms;</i>
75 +template1=# <i>\q</i>
76 </pre>
77
78 <p>
79 Finally, you need to create all the tables where data will be stored:
80 </p>
81
82 -<pre caption="Creating Jffnms database">
83 +<pre caption="Creating Jffnms tables">
84 # <i>psql jffnms jffnms &lt; /opt/jffnms/docs/jffnms-0.8.3.pgsql</i>
85 </pre>
86
87
88
89
90 --
91 gentoo-doc-cvs@l.g.o mailing list