Changes between Version 3 and Version 4 of Documentation/Manuals/ARCNativeAPELClients
- Timestamp:
- Jul 1, 2013 10:05:34 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/Manuals/ARCNativeAPELClients
v3 v4 23 23 mysql -u root -p 24 24 mysql> CREATE DATABASE apel; 25 mysql> GRANT ALL PRIVILEGES ON apel .* TO apel@localhost IDENTIFIED BY 'myverysecureapelpassword';25 mysql> GRANT ALL PRIVILEGES ON apelclient.* TO apel@localhost IDENTIFIED BY 'myverysecureapelpassword'; 26 26 mysql> quit 27 27 28 mysql -u apel -p apel < /usr/share/apel/client.sql28 mysql -u apel -p apelclient < /usr/share/apel/client.sql 29 29 }}} 30 30 31 Edit APEL parser configuration file ({{{/etc/apel/parser.cfg}}}) and specify DB, batch system, and ARC BLAH configuration: 32 {{{ 33 [db] 34 hostname = localhost 35 port = 3306 36 name = apelclient 37 username = apel 38 password = myverysecureapelpassword 39 40 [site_info] 41 site_name = GOCBD-SITE-NAME 42 lrms_server = some.fqdn.lrms.id 43 44 [blah] 45 enabled = true 46 dir = /var/log/arc/accounting 47 filename_prefix = blahp.log 48 subdirs = false 49 50 [batch] 51 enabled = false 52 reparse = false 53 type = PBS 54 dir = /path/to/torque/server_logs/ 55 filename_prefix = 201 56 subdirs = false 57 58 [logging] 59 logfile = /var/log/apelparser.log 60 level = INFO 61 console = false 62 }}}