Changes between Version 3 and Version 4 of Documentation/Manuals/ARCNativeAPELClients


Ignore:
Timestamp:
Jul 1, 2013 10:05:34 PM (11 years ago)
Author:
Andrii Salnikov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Manuals/ARCNativeAPELClients

    v3 v4  
    2323mysql -u root -p
    2424mysql> CREATE DATABASE apel;
    25 mysql> GRANT ALL PRIVILEGES ON apel.* TO apel@localhost IDENTIFIED BY 'myverysecureapelpassword';
     25mysql> GRANT ALL PRIVILEGES ON apelclient.* TO apel@localhost IDENTIFIED BY 'myverysecureapelpassword';
    2626mysql> quit
    2727
    28 mysql -u apel -p apel < /usr/share/apel/client.sql
     28mysql -u apel -p apelclient < /usr/share/apel/client.sql
    2929}}}
    3030
     31Edit APEL parser configuration file ({{{/etc/apel/parser.cfg}}}) and specify DB, batch system, and ARC BLAH configuration:
     32{{{
     33[db]
     34hostname = localhost
     35port = 3306
     36name = apelclient
     37username = apel
     38password = myverysecureapelpassword
     39
     40[site_info]
     41site_name = GOCBD-SITE-NAME
     42lrms_server = some.fqdn.lrms.id
     43
     44[blah]
     45enabled = true
     46dir = /var/log/arc/accounting
     47filename_prefix = blahp.log
     48subdirs = false
     49
     50[batch]
     51enabled = false
     52reparse = false
     53type = PBS
     54dir = /path/to/torque/server_logs/
     55filename_prefix = 201
     56subdirs = false
     57
     58[logging]
     59logfile = /var/log/apelparser.log
     60level = INFO
     61console = false
     62}}}