Product Documentation

When KeyAppliance is installed, an install-saka.sh script creates and configures a Linux user named domain1 to SFTP files from/to the appliance for batch request processing on DomainID (DID) 1. If you plan to use any other DID for batch request processing, then you would need to create a new user and update file/directory permissions to SFTP files for batch request processing.

https://demo4.strongkey.com/getstarted/assets/documents/HTML/images/key_strong_cyan.pngNOTE: Replace # sign with DID number for which you are planning to use batch request functionality.

  1. Login into the appliance as root user.
  2. Add new Linux user.
    shell> useradd -c "Domain # Batch Requester" -d /usr/local/strongauth/batchrequests/domain# -m domain#
  3. Create password for newly created user.
    shell> passwd domain#
  4. Make sub-directories under new user's home directory.
    shell> mkdir /usr/local/strongauth/batchrequests/domain#/in
    shell> mkdir /usr/local/strongauth/batchrequests/domain#/out
  5. Update permissions for new directories.
    shell> chmod -R 770 /usr/local/strongauth/batchrequests/domain#
    shell> chmod g+s /usr/local/strongauth/batchrequests/domain#/in
    shell> chmod g+s /usr/local/strongauth/batchrequests/domain#/out
    shell> chown -R strongauth:domain# /usr/local/strongauth/batchrequests/domain#