Linux包仓库
作者:Todd Persen / 公司
2015年12月04日
导航到
今天,我们正式宣布了InfluxData包仓库。此包仓库可用于Ubuntu、Debian、RedHat和CentOS Linux包管理系统,未来还将支持更多发行版和操作系统。您现在可以自动下载和安装最新的InfluxData版本。此外,所有版本均经过GPG签名,确保在安装前所有包都已验证并安全。
配置
要开始,请根据以下说明为您选择的Linux发行版操作
CentOS用户
目前,仅支持CentOS 6和7版本。要将InfluxData仓库添加,作为管理员/root用户在终端中复制并粘贴以下内容
cat <<EOF | tee /etc/yum.repos.d/influxdb.repo
[influxdb]
name = InfluxDB Repository - RHEL \$releasever
baseurl = https://repos.influxdata.com/centos/\$releasever/\$basearch/stable
enabled = 1
gpgcheck = 1
gpgkey = https://repos.influxdata.com/influxdb.key
EOF
添加InfluxData仓库后,您可以使用以下命令安装InfluxDB的最新稳定版
yum install influxdb
要删除InfluxDB
yum remove influxdb
RedHat Enterprise Linux用户
与CentOS一样,目前仅支持RHEL 6和7版本。要将InfluxData仓库添加,作为管理员/root用户在终端中复制并粘贴以下内容
cat <<EOF | tee /etc/yum.repos.d/influxdb.repo
[influxdb]
name = InfluxDB Repository - RHEL \$releasever
baseurl = https://repos.influxdata.com/rhel/\$releasever/\$basearch/stable
enabled = 1
gpgcheck = 1
gpgkey = https://repos.influxdata.com/influxdb.key
EOF
添加InfluxData仓库后,您可以使用以下命令安装InfluxDB的最新稳定版
yum install influxdb
要删除InfluxDB
yum remove influxdb
Ubuntu用户
对于Ubuntu,目前支持12.04(Precise)、14.04(Trusty)、14.10(Utopic)和15.04(Vivid)版本。要将InfluxData仓库添加,作为管理员/root用户在终端中复制并粘贴以下内容
curl -sL https://repos.influxdata.com/influxdb.key | apt-key add -
source /etc/lsb-release
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | tee -a /etc/apt/sources.list
添加InfluxData仓库后,您可以使用以下命令安装InfluxDB的最新稳定版
apt-get update
apt-get install influxdb
要删除InfluxDB
apt-get remove influxdb
Debian用户
对于Debian,目前支持Jessie和Wheezy版本。要将InfluxData仓库添加,作为管理员/root用户在终端中复制并粘贴以下内容
curl -sL https://repos.influxdata.com/influxdb.key | apt-key add -
source /etc/os-release
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | tee -a /etc/apt/sources.list
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | tee -a /etc/apt/sources.list
添加InfluxData仓库后,您可以使用以下命令安装InfluxDB的最新稳定版
apt-get update
apt-get install influxdb
要删除InfluxDB
apt-get remove influxdb
接下来是什么
就是这样!一旦应用上述配置,您的系统将能够自动安装和升级到当前和未来的InfluxDB(以及其他InfluxData应用程序)的稳定版本。当然,如果您遇到任何问题,请不要犹豫,随时通过[email protected]联系我们。
这里没有列出您的发行版?在Github上创建一个问题,我们将尽力将其添加到仓库中。