...
Info |
---|
Coming in Rogo 7.1 a command line replacement (and extension of the Clear Old Logs functionality) |
Scope
- Identifies any user that has a Left or Graduate role
- For the identified users, archives formative assessment logs
- For the identified users, archives progress test logs
- Removes any LTI associations for the users
- Resets users' passwords to [[blank]], preventing logon
Archive Script
php cli/archive.php -h
Rogo archive script options
-h, --help Display help
-a, --account, Rogo account to log process against [Required]
-l, --ldap, Rogo is using ldap accounts [Optional]
-r, --archive, Archive data to a seperate database [Optional]
...
Code Block | ||||
---|---|---|---|---|
| ||||
#!/bin/bash TIMESTAMP=$(date +"%Y-%m-%d-%H:%M:%S") if [ ! -f /rogocron/archive.lock ] then touch /rogocron/archive.lock cd /var/www/html/cli php archive.php -a admin > /rogolog/archive/archive.log.${TIMESTAMP} rm -rf /rogocron/archive.lock fi |
Seperate Archive Database
If you wish to store the archive data on a seperate database you will need to create it:
...
Code Block | ||
---|---|---|
| ||
CREATE USER 'rogo_archive'@'database host' IDENTIFIED BY 'a password'; GRANT SELECT, INSERT ON rogo_archive.log0_deleted TO 'rogo_archive'@'database host'; GRANT SELECT, INSERT ON rogo_archive.log1_deleted TO 'rogo_archive'@'database host'; GRANT SELECT, INSERT ON rogo_archive.log_metadata_deleted TO 'rogo_archive'@'database host'; FLUSH PRIVILEGES; |
The archive database confiruation configuration will need to be added to your config file in order for archive.php to pick it up.
...