### Start and Enable iconik-edge-transcoder Service (Bash) Source: https://help.iconik.backlight.co/hc/en-us/articles/25304165153431 Commands to enable the iconik-edge-transcoder service to start on boot and then start the service immediately. This action initiates the Transcoder's creation in iconik. ```bash sudo systemctl enable iconik-edge-transcoder sudo systemctl start iconik-edge-transcoder ``` -------------------------------- ### Enable and Start iconik Edge Transcoder Service Source: https://help.iconik.backlight.co/hc/en-us/articles/25304173173527-Installing-iconik-Edge-Transcoder-on-Enterprise-Linux-9 Enables the iconik Edge Transcoder service to start on boot and then starts the service. This action also creates the transcoder in iconik. ```bash sudo systemctl enable iconik_edge_transcoder sudo systemctl start iconik_edge_transcoder ``` -------------------------------- ### Enable and Start Iconik Storage Gateway Service Source: https://help.iconik.backlight.co/hc/en-us/articles/25304275556247-Installing-ISG-on-Enterprise-Linux-8 These commands enable the iconik Storage Gateway to start automatically on boot and then start the service immediately. It ensures the service is running and configured correctly. ```shell sudo systemctl enable iconik_storage_gateway sudo systemctl start iconik_storage_gateway ``` -------------------------------- ### Start iconik Edge Transcoder service on Enterprise Linux 8 Source: https://help.iconik.backlight.co/hc/en-us/articles/25304204216727 This snippet demonstrates how to enable and start the iconik Edge Transcoder service using systemctl. It also provides the command to follow the transcoder's log file in real-time. ```bash sudo systemctl enable iconik_edge_transcoder sudo systemctl start iconik_edge_transcoder sudo tail -f /var/log/iconik/iconik_edge_transcoder/default.log ``` -------------------------------- ### Manage Iconik Storage Gateway Service on Ubuntu Source: https://help.iconik.backlight.co/hc/en-us/articles/25304304628503-Installing-ISG-on-Ubuntu-22-04-Jammy Commands to enable, start, check the status, and follow the logs of the iconik-storage-gateway systemd service. ```bash sudo systemctl enable iconik-storage-gateway ``` ```bash sudo systemctl start iconik-storage-gateway ``` ```bash sudo systemctl status iconik-storage-gateway ``` ```bash sudo tail -f /var/log/iconik/iconik_storage_gateway/default.log ``` -------------------------------- ### Install Exiftool for XMP metadata (Linux) Source: https://help.iconik.backlight.co/hc/en-us/articles/25304257990551-Installing-ISG-on-Enterprise-Linux-9 Installs the Exiftool utility, which is necessary for writing XMP metadata to proxy files, enabling integration with Adobe products. ```bash sudo dnf install perl-Image-ExifTool ``` -------------------------------- ### Install Exiftool for XMP Metadata Source: https://help.iconik.backlight.co/hc/en-us/articles/25304165153431 This command installs Exiftool, a utility necessary for writing XMP metadata to proxy files. This is crucial for integrations with applications like Adobe Creative Suite, allowing metadata to be preserved and utilized. ```bash sudo apt-get install exiftool ``` -------------------------------- ### Enable and Start iconik File Cache Service Source: https://help.iconik.backlight.co/hc/en-us/articles/25304173173527-Installing-iconik-Edge-Transcoder-on-Enterprise-Linux-9 Enables the iconik file cache service to start on boot and then starts the service immediately. This service can improve transcoding performance. ```bash sudo systemctl enable iconik_file_cache sudo systemctl start iconik_file_cache ```