added set/lockout
[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 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: November 1999 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
45 </LI>
46 </UL>
47 <P>
48 <P>
49 <P><EM>Do</EM> get the latest versions of these packages and install them but use the above list as the earliest versions usable.
50 <P>
51 <H2><A NAME="ss1.2">1.2 Preparation</A>
52 </H2>
53
54 <P>I will assume that you have already downloaded the latest tarball of the DXSpider software and are ready to install it.
55 <P>
56 <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.
57 <P>
58 <P>
59 <BLOCKQUOTE><CODE>
60 <PRE>
61 # adduser -m sysop
62 </PRE>
63 </CODE></BLOCKQUOTE>
64 <P>
65 <P>Now set a password for the user ...
66 <P>
67 <BLOCKQUOTE><CODE>
68 <PRE>
69 # passwd sysop
70 # New UNIX password:
71 # Retype new UNIX password:
72 passwd: all authentication tokens updated successfully
73 </PRE>
74 </CODE></BLOCKQUOTE>
75 <P>
76 <H2><A NAME="ss1.3">1.3 Installing the software</A>
77 </H2>
78
79 <P>Now to unpack the DX Spider distribution, set symbolic links and group permissions. This example assumes you are using version 1.35 but of course you would substitute the correct version number.  Copy the tarball to /home/sysop and do the following.
80 <P>
81 <BLOCKQUOTE><CODE>
82 <PRE>
83 # cd ~sysop
84 # tar xvfz spider-1.35.tar.gz
85 # ln -s ~sysop/spider /spider
86 # groupadd -g 251 spider       (or another number)
87 </PRE>
88 </CODE></BLOCKQUOTE>
89 <P>If you do not have the command <EM>groupadd</EM> available to you simply add a line in /etc/group by hand.
90 <P>
91 <BLOCKQUOTE><CODE>
92 <PRE>
93 # vi /etc/group                (or your favorite editor)
94 </PRE>
95 </CODE></BLOCKQUOTE>
96 <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
97 <P><CODE>spider:x:251:sysop,g0vgs,root</CODE>
98 <P>
99 <P>The next step is to set the permissions on the Spider directory tree and files ....
100 <P>
101 <BLOCKQUOTE><CODE>
102 <PRE>
103 # chown -R sysop.spider spider
104 # find . -type d -exec chmod 2775 {} \;
105 # find . -type f -exec chmod 775 {} \;
106 </PRE>
107 </CODE></BLOCKQUOTE>
108 <P>
109 <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.
110 <P>
111 <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 ..
112 <P>
113 <BLOCKQUOTE><CODE>
114 <PRE>
115 # chown root ax25_call netrom_call
116 # chmod 4775 ax25_call netrom_call
117 </PRE>
118 </CODE></BLOCKQUOTE>
119 <P>
120 <H2><A NAME="ss1.4">1.4 Setting callsigns etc</A>
121 </H2>
122
123 <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 ....
124 <P>
125 <BLOCKQUOTE><CODE>
126 <PRE>
127 $ cd /spider
128 $ mkdir local
129 $ mkdir local_cmd
130 $ cp perl/DXVars.pm local
131 $ cd local
132 $ vi DXVars.pm (or your favourite editor)
133 </PRE>
134 </CODE></BLOCKQUOTE>
135 <P>
136 <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 ....
137 <P><CODE>$myemail = "ianmaude\@btinternet.com";</CODE>
138 <P>
139 <P>There appears to be an extraeneous slash in there.  However this has to be there for the file to work so leave it in.
140 <P>
141 <P><B>PLEASE USE CAPITAL LETTERS FOR CALLSIGNS</B>
142 <P>
143 <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!
144 <P>
145 <P>Save the new file and change directory to ../perl ....
146 <P>
147 <BLOCKQUOTE><CODE>
148 <PRE>
149 $ cd ../perl
150 </PRE>
151 </CODE></BLOCKQUOTE>
152 <P>
153 <P>Now type the following command which creates the basic user file with you as the sysop.
154 <P>
155 <BLOCKQUOTE><CODE>
156 <PRE>
157 $ create_sysop.pl
158 </PRE>
159 </CODE></BLOCKQUOTE>
160 <P>
161 <H2><A NAME="ss1.5">1.5 Starting up for the first time</A>
162 </H2>
163
164 <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 ...
165 <P>
166 <BLOCKQUOTE><CODE>
167 <PRE>
168 $ cluster.pl
169 DXSpider DX Cluster Version 1.35
170 Copyright (c) 1998 Dirk Koopman G1TLH
171 loading prefixes ...
172 loading band data ...
173 loading user file system ...
174 starting listener ...
175 reading existing message headers
176 reading cron jobs
177 orft we jolly well go ...
178 </PRE>
179 </CODE></BLOCKQUOTE>
180 <P>
181 <P>If all is well then login on another term or console as sysop and cd to /spider/perl.  Now issue the following command ...
182 <P>
183 <BLOCKQUOTE><CODE>
184 <PRE>
185 $ client.pl
186 </PRE>
187 </CODE></BLOCKQUOTE>
188 <P>
189 <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 ....
190 <P>
191 <BLOCKQUOTE><CODE>
192 <PRE>
193 G0VGS de GB7MBC 19-Nov-1999 2150Z >
194 </PRE>
195 </CODE></BLOCKQUOTE>
196 <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 ....
197 <P>
198 <BLOCKQUOTE><CODE>
199 <PRE>
200 shutdown
201 </PRE>
202 </CODE></BLOCKQUOTE>
203 <P>
204 <P>and both the cluster and the client should return to Linux prompts.
205 <P>
206 <HR>
207 <A HREF="adminmanual-2.html">Next</A>
208 Previous
209 <A HREF="adminmanual.html#toc1">Contents</A>
210 </BODY>
211 </HTML>