forked from abh/ntppool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
executable file
·66 lines (46 loc) · 2.12 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Copyright 2005-2011 Ask Bjoern Hansen, Develooper LLC
Copyright 2003-2005 Adrian von Bidder
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
This is the code for the NTP Pool project, http://www.pool.ntp.org/
See the LICENSE file for detailed copyright and licensing information.
-------------------------------------------------------------------------
Quick and dirty install instructions; email [email protected] for
help.
CPAN modules for OS X (intel, 10.6) and i386 Linux are installed in the cpan/
submodule.
export DIR=`pwd`/ntppool
# you can also clone on github: http://github.com/abh/ntppool
git clone git://git.develooper.com/ntppool.git
cd ntppool
git submodule init
git submodule update
export CBROOTLOCAL=$DIR
export CBROOT=$DIR/combust
cp combust/combust.conf.sample combust.conf
edit combust.conf
# setup the database section with an "ntppool" database
# add "ntppool" to the "sites = ... " list.
# setup a [ntppool] section at the bottom
mkdir -p $DIR/rrd/server/graph
mkdir -p $DIR/rrd/zone/graph
# Your MySQL server needs timezone data loaded, if it doesn't have it, run:
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
$CBROOT/bin/cmysql ntppool < sql/tables.sql
$CBROOT/bin/cmysql ntppool < sql/zones.sql
$CBROOT/bin/database_update ntppool
$CBROOT/bin/database_update combust
$CBROOT/bin/database_update ntppool
$CBROOT/bin/httpd
If any modules are missing, the easiest way to install them is with
cpanm -L cpan Module::Name
To setup a monitoring system in the 'monitors' table, run
./pool addmonitor [email protected] 127.0.0.1 v4
It will return an api key to be used with the ./monitor script.