source: tags/initial/lib/arb_tcp.dat

Last change on this file was 2, checked in by oldcode, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1#*******************    Syntax ***********************************
2#
3#       [USER:]SERVER_ID                HOST:IP_NR      [programm       args]
4#       [USER:]SERVER_ID                :SOCKETPATH     [programm       args]
5#               [xxx] means optional field
6#               all $(enviroment_variable) are replaced by the value of the 'enviroment_variable'
7#               if host is localhost than it replaces by `hostname`
8#
9#       Existing SERVER_IDs:
10#
11#               ARB_DB_SERVER           Your private database server. It is automatically started
12#               ARB_PT_SERVER           Default PT_SERVER for PB_RETRIEVE (privat TU_Munich server)
13#               ARB_PT_SERVERn          Global PT_SERVERs. Needed for fast database search (align seq, probe des.)
14#                                       n starts from 0 to max, no number can be excluded !!!
15#               ARB_NAME_SERVER         Generates short names for species
16#
17#*****************************************************************
18
19
20#***********    Private Servers (for each user) ******************
21#
22# This is a local server, running on one machine. Each user has his own socket:
23# ARB_PID is an Enviroment Variable which is set by the command 'arb' to its own process id
24# see programm $ARBHOME/SH/arb_clean to remove the sockets
25
26ARB_DB_SERVER           :/tmp/arb_db_$(USER)_$(ARB_PID)
27
28# If you want to run programms on a workstation cluster, you have to assign your arbdb server
29# and one ip-id for each user. To choose an ip_id choose any number between 1000 and 4000 and
30# examine /etc/services whether this ip-id has not yet been allocated by another programm
31#       smith:ARB_DB_SERVER     myhost:4011             // socket for smith ('arb' have to be started on 'myhost')
32#       ludwig:ARB_DB_SERVER    myhost:4012             // socket for ludwig
33#       ARB_DB_SERVER           :/tmp/arb_db_$(USER)_$(ARB_PID) // and sockets for all others
34
35#***********    Global Servers (for all users) ******************
36#
37#***********    Nameserver The server should run on the nfs server ******************
38
39ARB_NAME_SERVER         localhost:3029          arb_name_server -d$(ARBHOME)/lib/nas/names.dat
40
41#***********    PT_SERVERS The server should run on the nfs server ******************
42#*******     You may add new pt_servers here: (numbers must be continues)   *********
43
44ARB_PT_SERVER           localhost:3030          arb_pt_server   -D$(ARBHOME)/lib/pts/16s_rrna_aligned.arb
45ARB_PT_SERVER0          localhost:3030          arb_pt_server   -D$(ARBHOME)/lib/pts/23s_rrna_aligned.arb
46ARB_PT_SERVER1          localhost:3031          arb_pt_server   -D$(ARBHOME)/lib/pts/LSU_rRNA.arb
47ARB_PT_SERVER2          localhost:3032          arb_pt_server   -D$(ARBHOME)/lib/pts/SSU_rRNA.arb
48ARB_PT_SERVER3          localhost:3033          arb_pt_server   -D$(ARBHOME)/lib/pts/5S_rRNA.arb
49ARB_PT_SERVER4          localhost:3035          arb_pt_server   -D$(ARBHOME)/lib/pts/atp.arb
50ARB_PT_SERVER5          localhost:3036          arb_pt_server   -D$(ARBHOME)/lib/pts/rrna.arb
51ARB_PT_SERVER6          localhost:3038          arb_pt_server   -D$(ARBHOME)/lib/pts/user.arb
52ARB_PT_SERVER7      localhost:3043      arb_pt_server   -D$(ARBHOME)/lib/pts/ITS.arb
53ARB_PT_SERVER8          localhost:3037          arb_pt_server   -D$(ARBHOME)/lib/pts/SSU_WL.arb
54ARB_PT_SERVER9          localhost:3040          arb_pt_server   -D$(ARBHOME)/lib/pts/LSU_WL.arb
55ARB_PT_SERVER10         localhost:3044          arb_pt_server   -D$(ARBHOME)/lib/pts/PRB_WL.arb
56ARB_PT_SERVER11         localhost:3039          arb_pt_server   -D$(ARBHOME)/lib/pts/develop.arb
57
Note: See TracBrowser for help on using the repository browser.