Install Pelican on Alpine
This document explains how to install Pelican on a Alpine Linux operating system.
Install Pelican APK
You can install Pelican by downloading an .apk
package or by downloading a binary .tar.gz
file. You only need to follow one section below to install.
Note: Pelican Alpine Linux package does not contain dependencies such as
XRootD
for Pelican servers. Use Pelican Docker image instead if you want to serve a Pelican server.
Install the Pelican using an APK package
-
Navigate to Pelican download page and select the Pelican APK you want to install.
-
In the Operating System section, select Linux. In Architectures section, select X86_64 or ARM64 depending on the architecture of your machine.
-
In the list of download candidates, copy the link to
pelican_x.x.x_p1_x86_64.apk
if you select X86_64, orpelican_x.x.x_p1_aarch64.apk
if you select ARM64, wherex.x.x
is the version number. -
Change the following command with the link to the binary you copied in the previous step and run the command
wget <replace-with-the-link-you-copied> sudo apk add --allow-untrusted pelican_7.5.8_p1_x86_64.apk
Note: You need to replace
pelican_7.5.8_p1_x86_64.apk
withpelican_7.5.8-1_aarch64.apk
if you are running anARM64
machine.Example to install Pelican
v7.5.8
APK package on anX86_64
machine:wget https://github.com/PelicanPlatform/pelican/releases/download/v7.5.8/pelican_7.5.8_p1_x86_64.apk sudo apk add --allow-untrusted pelican_7.5.8_p1_x86_64.apk
Install Pelican as a standalone binary
Refer to installing Linux Standalone Binary page for how to install Pelican as a standalone binary.
Uninstall on Alpine
To uninstall Pelican, run the following command
sudo apk del pelican