Changes between Version 6 and Version 7 of Documentation/Manuals/ARCNativeAPELClients


Ignore:
Timestamp:
Jul 3, 2013 6:51:52 PM (11 years ago)
Author:
Andrii Salnikov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Manuals/ARCNativeAPELClients

    v6 v7  
    7474Run {{{apelparser}}} and make sure records are parsed successfully looking into parser.log and of cause the database content :-)
    7575
     76If everything is OK, it's time to configure APEL client and broker network to use.
     77Edit the {{{/etc/apel/client.cfg}}}:
     78{{{
     79[db]
     80hostname = localhost
     81port = 3306
     82name = apelclient
     83username = apel
     84password = myverysecureapelpassword
     85
     86[spec_updater]
     87enabled = true
     88site_name = GOCBD-SITE-NAME
     89lrms_server = some.fqdn.lrms.id
     90ldap_host = bdii.ha.grid.org.ua
     91ldap_port = 2170
     92
     93[joiner]
     94enabled = true
     95local_jobs = false
     96
     97[unloader]
     98enabled = true
     99dir_location = /var/spool/apel/
     100send_summaries = true
     101withhold_dns = false
     102interval = latest
     103send_ur = false
     104
     105[ssm]
     106enabled = true
     107
     108[logging]
     109logfile = /var/log/apel/client.log
     110level = INFO
     111console = false
     112}}}
     113
     114And finally SSM configuration should be specified in {{{/etc/apel/sender.cfg}}}:
     115{{{
     116[broker]
     117# production
     118#bdii: ldap://bdii.ha.grid.org.ua:2170
     119#network: PROD
     120# testing
     121host: test-msg02.afroditi.hellasgrid.gr
     122port: 6163
     123use_ssl: true
     124
     125[certificates]
     126certificate: /etc/grid-security/hostcert.pem
     127key: /etc/grid-security/hostkey.pem
     128capath: /etc/grid-security/certificates
     129
     130[messaging]
     131# production
     132# destination: /queue/global.accounting.cpu.central
     133# testing
     134destination: /queue/global.accounting.cputest.CENTRAL
     135path: /var/spool/apel/outgoing
     136
     137[logging]
     138logfile: /var/log/apel/ssmsend.log
     139level: INFO
     140console: false
     141}}}
     142