added new version fo the admin manual
[spider.git] / html / adminmanual-1.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
2 <HTML>
3 <HEAD>
4  <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9">
5  <TITLE>The DXSpider Installation and Administration Manual : Installation (Original version by Iain Phillips, G0RDI)</TITLE>
6  <LINK HREF="adminmanual-2.html" REL=next>
7
8  <LINK HREF="adminmanual.html#toc1" REL=contents>
9 </HEAD>
10 <BODY>
11 <A HREF="adminmanual-2.html">Next</A>
12 Previous
13 <A HREF="adminmanual.html#toc1">Contents</A>
14 <HR>
15 <H2><A NAME="s1">1. Installation (Original version by Iain Phillips, G0RDI)</A></H2>
16
17 <P>Last modified: 18 June 2000 by Ian Maude, G0VGS
18 <P>
19 <H2><A NAME="ss1.1">1.1 Introduction</A>
20 </H2>
21
22 <P>This section describes the installation of DX Spider v1.35 on a 
23 <A HREF="http://www.redhat.com">RedHat</A> Linux Distribution.  I do not intend to try and cover the installation of Linux or the setup of the AX25 utilities.  If you need help on this then read Iains original HOWTO on the 
24 <A HREF="http://www.dxcluster.org">DXSpider</A> website.
25 <P>
26 <P>I am assuming a general knowledge of Linux and its commands.  You should know how to use <EM>tar</EM> and how to edit files using your favourite editor.
27 <P>
28 <P>The crucial ingredient for all of this is 
29 <A HREF="http://www.perl.org">Perl 5.004</A>.Now I know Perl 5.005 is out and this will almost certainly work with it, but 
30 <A HREF="http://www.redhat.com">RedHat 5.1</A> comes with 5.004. <EM>Be Warned</EM>, earlier versions of 
31 <A HREF="http://www.redhat.com">RedHat</A> <B>do not</B> come with 5.004 as standard, you need to 
32 <A HREF="ftp://upgrade.redhat.com">upgrade</A><P>
33 <P>In addition to the standard Red Hat distribution you will require the following 
34 <A HREF="http://www.cpan.org/CPAN.html">CPAN</A> modules: -
35 <P>
36 <P>
37 <UL>
38 <LI>            MD5-1.7.tar.gz</LI>
39 <LI>            Data-Dumper-2.10.tar.gz</LI>
40 <LI>            FreezeThaw-0.3.tar.gz</LI>
41 <LI>            MLDBM-2.00.ar.gz</LI>
42 <LI>            TimeDate-1.8.tar.gz</LI>
43 <LI>            IO-1.20.tar.tgz</LI>
44 <LI>            Net-Telnet-3.01.tar.gz</LI>
45 <LI>            Curses-1.02.tar.gz
46 </LI>
47 </UL>
48 <P>
49 <P>
50 <P><EM>Do</EM> get the latest versions of these packages and install them but use the above list as the earliest versions usable.
51 <P>
52 <H2><A NAME="ss1.2">1.2 Preparation</A>
53 </H2>
54
55 <P>I will assume that you have already downloaded the latest tarball of the DXSpider software and are ready to install it. I am assuming version 1.35 for this section but of course you would use the latest version.
56 <P>
57 <P>Login as root and create a user to run the cluster under.  <B><I>UNDER NO CIRCUMSTANCES USE ROOT AS THIS USER!</I></B>.  I am going to use the name <EM>sysop</EM>.  You can call it anything you wish.  Depending on your security requirements you may wish to use an existing user, however this is your own choice.
58 <P>
59 <P>
60 <BLOCKQUOTE><CODE>
61 <PRE>
62 # adduser -m sysop
63 </PRE>
64 </CODE></BLOCKQUOTE>
65 <P>
66 <P>Now set a password for the user ...
67 <P>
68 <BLOCKQUOTE><CODE>
69 <PRE>
70 # passwd sysop
71 # New UNIX password:
72 # Retype new UNIX password:
73 passwd: all authentication tokens updated successfully
74 </PRE>
75 </CODE></BLOCKQUOTE>
76 <P>
77 <H2><A NAME="ss1.3">1.3 Installing the software</A>
78 </H2>
79
80 <P>Now to unpack the DX Spider distribution, set symbolic links and group permissions.  Copy the tarball to /home/sysop and do the following.
81 <P>
82 <BLOCKQUOTE><CODE>
83 <PRE>
84 # cd ~sysop
85 # tar xvfz spider-1.35.tar.gz
86 # ln -s ~sysop/spider /spider
87 # groupadd -g 251 spider       (or another number)
88 </PRE>
89 </CODE></BLOCKQUOTE>
90 <P>If you do not have the command <EM>groupadd</EM> available to you simply add a line in /etc/group by hand.
91 <P>
92 <BLOCKQUOTE><CODE>
93 <PRE>
94 # vi /etc/group                (or your favorite editor)
95 </PRE>
96 </CODE></BLOCKQUOTE>
97 <P>You also need to add some others to the group, including your own callsign (this will be used as an alias) and root.  The finished line in /etc/group should look something like this
98 <P><CODE>spider:x:251:sysop,g0vgs,root</CODE>
99 <P>
100 <P>The next step is to set the permissions on the Spider directory tree and files ....
101 <P>
102 <BLOCKQUOTE><CODE>
103 <PRE>
104 # chown -R sysop.spider spider
105 # find . -type d -exec chmod 2775 {} \;
106 # find . -type f -exec chmod 775 {} \;
107 </PRE>
108 </CODE></BLOCKQUOTE>
109 <P>
110 <P>This last step allows various users of the group <EM>spider</EM> to have write access to all the directories.  This is not really needed just yet but will be useful when web interfaces start to appear.
111 <P>
112 <P>Finally, you need to fix the permissions on the ax25_call and netrom_call programs.  Check where they are with the <EM>locate</EM> command and alter the permissions with the <EM>chmod</EM> command like this ..
113 <P>
114 <BLOCKQUOTE><CODE>
115 <PRE>
116 # chown root ax25_call netrom_call
117 # chmod 4775 ax25_call netrom_call
118 </PRE>
119 </CODE></BLOCKQUOTE>
120 <P>
121 <H2><A NAME="ss1.4">1.4 Setting callsigns etc</A>
122 </H2>
123
124 <P>Now login to your machine as the user you created earlier.  In my case that user is called <EM>sysop</EM>.  Once logged in, issue the following commands ....
125 <P>
126 <BLOCKQUOTE><CODE>
127 <PRE>
128 $ cd /spider
129 $ mkdir local
130 $ mkdir local_cmd
131 $ cp perl/DXVars.pm local
132 $ cd local
133 $ vi DXVars.pm (or your favourite editor)
134 </PRE>
135 </CODE></BLOCKQUOTE>
136 <P>
137 <P>Using the distributed DXVars.pm as a a template, set your cluster callsign, sysop callsign and other user info to suit your own environment. Note that this a perl file which will be parsed and executed as part of the cluster. If you get it wrong then perl will complain when you start the cluster process.  It is important only to alter the text of any section.  Some of the lines look a little odd.  Take this line for example ....
138 <P><CODE>$myemail = "ianmaude\@btinternet.com";</CODE>
139 <P>
140 <P>There appears to be an extra slash in there.  However this has to be there for the file to work so leave it in.
141 <P>
142 <P><B>PLEASE USE CAPITAL LETTERS FOR CALLSIGNS</B>
143 <P>
144 <P>DON'T alter the DXVars.pm (or any other file) in /spider/perl, they are overwritten with every release. Any files or commands you place in /spider/local or /spider/local_cmd will automagically be used in preference to the ones in /spider/perl EVEN whilst the cluster is running!
145 <P>
146 <P>Save the new file and change directory to ../perl ....
147 <P>
148 <BLOCKQUOTE><CODE>
149 <PRE>
150 $ cd ../perl
151 </PRE>
152 </CODE></BLOCKQUOTE>
153 <P>
154 <P>Now type the following command which creates the basic user file with you as the sysop.
155 <P>
156 <BLOCKQUOTE><CODE>
157 <PRE>
158 $ create_sysop.pl
159 </PRE>
160 </CODE></BLOCKQUOTE>
161 <P>
162 <H2><A NAME="ss1.5">1.5 Starting up for the first time</A>
163 </H2>
164
165 <P>We can now bring spider up for the first time and see if all is well or not!  It should look something like this ...
166 <P>
167 <BLOCKQUOTE><CODE>
168 <PRE>
169 $ cluster.pl
170 DXSpider DX Cluster Version 1.35
171 Copyright (c) 1998 Dirk Koopman G1TLH
172 loading prefixes ...
173 loading band data ...
174 loading user file system ...
175 starting listener ...
176 reading existing message headers
177 reading cron jobs
178 orft we jolly well go ...
179 </PRE>
180 </CODE></BLOCKQUOTE>
181 <P>
182 <P>If all is well then login on another term or console as <EM>sysop</EM> and cd to /spider/perl.  Now issue the following command ...
183 <P>
184 <BLOCKQUOTE><CODE>
185 <PRE>
186 $ client.pl
187 </PRE>
188 </CODE></BLOCKQUOTE>
189 <P>
190 <P>This should log you into the cluster as the sysop under the alias callsign we set earlier.  In this case the callsign is G0VGS.  The cluster callsign is set in the DXVars.pm file in /spider/local.  In this case we will assume that this was set as GB7MBC.  You should therefore see this when you login ....
191 <P>
192 <BLOCKQUOTE><CODE>
193 <PRE>
194 G0VGS de GB7MBC 19-Nov-1999 2150Z >
195 </PRE>
196 </CODE></BLOCKQUOTE>
197 <P>If you do, congratulations!  If not, look over the instructions again, you have probably missed something out.  You can shut spider down again with the command ....
198 <P>
199 <BLOCKQUOTE><CODE>
200 <PRE>
201 shutdown
202 </PRE>
203 </CODE></BLOCKQUOTE>
204 <P>
205 <P>and both the cluster and the client should return to Linux prompts.
206 <P>
207 <HR>
208 <A HREF="adminmanual-2.html">Next</A>
209 Previous
210 <A HREF="adminmanual.html#toc1">Contents</A>
211 </BODY>
212 </HTML>