| 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 then it is replaced by the result of `hostname`. |
|---|
| 8 | # |
|---|
| 9 | # Specifying an username before the SERVER_ID makes the server user specific. |
|---|
| 10 | # |
|---|
| 11 | # This file is searched at several locations: |
|---|
| 12 | # - in the current directory |
|---|
| 13 | # - in the $(HOME) (=home directory of the current user) |
|---|
| 14 | # - in $(ARBHOME)/lib |
|---|
| 15 | # The first occurrance found is taken. |
|---|
| 16 | # |
|---|
| 17 | # Existing SERVER_IDs: |
|---|
| 18 | # |
|---|
| 19 | # ARB_DB_SERVER Your private database server. It is automatically started |
|---|
| 20 | # ARB_PT_SERVER Default PT_SERVER for PB_RETRIEVE (privat TU_Munich server) |
|---|
| 21 | # ARB_PT_SERVERn Global PT_SERVERs. Needed for fast database search (align seq, probe des.) |
|---|
| 22 | # n starts from 0 to max, no number can be excluded !!! |
|---|
| 23 | # ARB_NAME_SERVER Generates short names for species (using 'acc') |
|---|
| 24 | # ARB_NAME_SERVER_field Generates short names for species (using 'acc' and 'field') |
|---|
| 25 | # |
|---|
| 26 | #***************************************************************** |
|---|
| 27 | |
|---|
| 28 | # version of arb_tcp.dat |
|---|
| 29 | ARB_TCP_DAT_VERSION 2 |
|---|
| 30 | |
|---|
| 31 | #*********** Private Servers (for each user) ****************** |
|---|
| 32 | # |
|---|
| 33 | # This is a local server, running on one machine. Each user has his own socket: |
|---|
| 34 | # ARB_PID is an Enviroment Variable which is set by the command 'arb' to its own process id |
|---|
| 35 | # see programm $ARBHOME/SH/arb_clean to remove the sockets |
|---|
| 36 | |
|---|
| 37 | ARB_DB_SERVER :/tmp/arb_db_$(USER)_$(ARB_PID) |
|---|
| 38 | |
|---|
| 39 | # If you want to run programs on a workstation cluster, you have to assign your arbdb server |
|---|
| 40 | # and one ip-id for each user. To choose an ip_id choose any number between 1000 and 4000 and |
|---|
| 41 | # examine /etc/services whether this ip-id has not yet been allocated by another programm |
|---|
| 42 | # smith:ARB_DB_SERVER myhost:4011 // socket for smith ('arb' has to be started on 'myhost') |
|---|
| 43 | # ludwig:ARB_DB_SERVER myhost:4012 // socket for ludwig |
|---|
| 44 | # ARB_DB_SERVER :/tmp/arb_db_$(USER)_$(ARB_PID) // and sockets for all others |
|---|
| 45 | |
|---|
| 46 | #*********** Global Servers (for all users) ****************** |
|---|
| 47 | # |
|---|
| 48 | #*********** Nameserver The server should run on the nfs server ****************** |
|---|
| 49 | # The primary nameserver (ARB_NAME_SERVER) uses the field 'acc' for species identification |
|---|
| 50 | # |
|---|
| 51 | # You may define additional nameservers, using one additional field for identification. |
|---|
| 52 | # The defined nameserver 'ARB_NAME_SERVER_START' uses the fields 'acc' and 'start'. |
|---|
| 53 | |
|---|
| 54 | ARB_NAME_SERVER localhost:3020 arb_name_server -d$(ARBHOME)/lib/nas/names.dat |
|---|
| 55 | ARB_NAME_SERVER_START localhost:3021 arb_name_server -d$(ARBHOME)/lib/nas/names_start.dat -fstart=1 |
|---|
| 56 | # ARB_NAME_SERVER_STRAIN localhost:3022 arb_name_server -d$(ARBHOME)/lib/nas/names_strain.dat -fstrain= |
|---|
| 57 | # ARB_NAME_SERVER_POS_START localhost:3023 arb_name_server -d$(ARBHOME)/lib/nas/names_pos_start.dat -fpos_start=1 |
|---|
| 58 | |
|---|
| 59 | #*********** PT_SERVERS The server should run on the nfs server ****************** |
|---|
| 60 | #******* You may add new pt_servers here: (numbers must be continued) ********* |
|---|
| 61 | # Note: If the database name is '!ASSUME_RUNNING' (i.e. -D!ASSUME_RUNNING), ARB will not |
|---|
| 62 | # try to start/stop/update/... the server and will not check DB for existance. |
|---|
| 63 | # To use such a PT-Server you'll have to start it manually on the remote host |
|---|
| 64 | |
|---|
| 65 | ARB_PT_SERVER0 localhost:3030 arb_pt_server -D$(ARBHOME)/lib/pts/probe_server.arb RESERVED |
|---|
| 66 | ARB_PT_SERVER1 localhost:3031 arb_pt_server -D$(ARBHOME)/lib/pts/LSU_rRNA.arb |
|---|
| 67 | ARB_PT_SERVER2 localhost:3032 arb_pt_server -D$(ARBHOME)/lib/pts/SSU_rRNA.arb |
|---|
| 68 | ARB_PT_SERVER3 localhost:3033 arb_pt_server -D$(ARBHOME)/lib/pts/user1.arb |
|---|
| 69 | ARB_PT_SERVER4 localhost:3034 arb_pt_server -D$(ARBHOME)/lib/pts/user2.arb |
|---|
| 70 | ARB_PT_SERVER5 localhost:3035 arb_pt_server -D$(ARBHOME)/lib/pts/user3.arb |
|---|
| 71 | ARB_PT_SERVER6 localhost:3036 arb_pt_server -D$(ARBHOME)/lib/pts/user4.arb |
|---|
| 72 | ARB_PT_SERVER7 localhost:3037 arb_pt_server -D$(ARBHOME)/lib/pts/user5.arb |
|---|
| 73 | ARB_PT_SERVER8 localhost:3038 arb_pt_server -D$(ARBHOME)/lib/pts/user6.arb |
|---|
| 74 | ARB_PT_SERVER9 localhost:3039 arb_pt_server -D$(ARBHOME)/lib/pts/user7.arb |
|---|
| 75 | ARB_PT_SERVER10 localhost:3040 arb_pt_server -D$(ARBHOME)/lib/pts/user8.arb |
|---|