### Example Kerberos Configuration File (krb5.conf) Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Installation%3AKerberos_Authentication This is an example of a `krb5.conf` file generated by the assyst Installer. Ensure realm descriptions are in UPPERCASE for the service to start correctly. ```ini [libdefaults] default_realm = IFS.LOCAL default_tkt_enctypes = aes128-cts rc4-hmac des3-cbc-sha1 des-cbc-md5 des-cbc-crc default_tgs_enctypes = aes128-cts rc4-hmac des3-cbc-sha1 des-cbc-md5 des-cbc-crc permitted_enctypes = aes256-cts aes128-cts rc4-hmac des3-cbc-sha1 des-cbc-md5 des-cbc-crc clockskew = 300 [realms] IFS.LOCAL = { kdc = kdc1.ifs.local default_domain = IFS.LOCAL } [domain_realm] .IFS.LOCAL = IFS.LOCAL ``` -------------------------------- ### Run assyst Installer on Windows Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Installation%3AUsing_the_assyst_Installer Double-click the installer batch file to start the assyst installation process on a Windows system. ```batch installer.bat ``` -------------------------------- ### Run assyst ITOM 25R1 Setup in Silent Mode Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/ITOM%3AUpgrading_assyst_ITOM Initiate the silent installation of the assyst ITOM 25R1 setup. This command should be executed from the installation directory. ```bash C:\25R1 >SapphireIMS-ITOM-25R1-Setup.exe /mode "silent" ``` -------------------------------- ### Example Kerberos Configuration (krb5.conf) Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php?action=edit&title=Installation%3AKerberos_Authentication This is an example of a krb5.conf file, which is created in the %SERVER_HOME%\bin directory. Ensure realm descriptions are in UPPERCASE for the service to start. ```ini [libdefaults] default_realm = IFS.LOCAL default_tkt_enctypes = aes128-cts rc4-hmac des3-cbc-sha1 des-cbc-md5 des-cbc-crc default_tgs_enctypes = aes128-cts rc4-hmac des3-cbc-sha1 des-cbc-md5 des-cbc-crc permitted_enctypes = aes256-cts aes128-cts rc4-hmac des3-cbc-sha1 des-cbc-md5 des-cbc-crc clockskew = 300 [realms] IFS.LOCAL = { kdc = kdc1.ifs.local default_domain = IFS.LOCAL } [domain_realm] .IFS.LOCAL = IFS.LOCAL ``` -------------------------------- ### Example MySQL Connection Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/ITOM%3ADatabase_Maintenance_for_assyst_ITOM_Professional_Edition_and_MSP_Probe An example of how to connect to the MySQL server with specific credentials. ```bash mysql -h 172.16.11.54 -u root -pims ``` -------------------------------- ### Example Silent Installation with Server Address Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Integrations%3AassystReset_Version_2%3A_Deploying_to_the_desktop This is an example of the silent installation command with a specific assystReset server address. Ensure the server address is correctly formatted (e.g., https://AR-RESET-01). ```bash msiexec /i assystReset.msi /qn /norestart RESET_SERVER=https://AR-RESET-01 ``` -------------------------------- ### Install assyst Application Launcher Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Installation%3Aassyst_Application_Launcher Run the install script with sudo to install the application. The script will prompt for installation location and owner. ```bash sudo ./install.sh ``` -------------------------------- ### Jira REST API GET Request Example Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php?action=edit&title=Integrations%3AassystIPaaS_Jira_Event_Bridge Example of how to make a GET request to the Jira REST API using Postman to retrieve issue details. Ensure correct authentication details are provided. ```http https:///rest/api/2/issue/ ``` -------------------------------- ### Install assyst Application Launcher with Options Source: https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Installation%3Aassyst_Application_Launcher Use optional switches to specify the installation path, owner, and to skip the confirmation prompt. This command installs the application to /opt/assystApplicationLauncher as root without user interaction. ```bash sudo ./install.sh -path "/opt/assystApplicationLauncher" -owner root -skipConfirmation ```