Install InfluxDB 3 Enterprise
Multi-node cluster setup
For information about setting up a multi-node InfluxDB 3 Enterprise cluster, see Create a multi-node cluster in the Get started guide.
For steps to upgrade an existing InfluxDB 3 Enterprise cluster, see Upgrade InfluxDB.
System Requirements
Operating system
InfluxDB 3 Enterprise runs on Linux, macOS, and Windows.
Object storage
A key feature of InfluxDB 3 is its use of object storage to store time series data in Apache Parquet format. You can choose to store these files on your local file system. Performance on your local filesystem will likely be better, but object storage has the advantage of not running out of space and being accessible by other systems over the network. InfluxDB 3 Enterprise natively supports Amazon S3, Azure Blob Storage, and Google Cloud Storage. You can also use many local object storage implementations that provide an S3-compatible API, such as Minio.
Install
InfluxDB 3 Enterprise runs on Linux, macOS, and Windows.
Choose one of the following methods to install InfluxDB 3 Enterprise:
- Quick install for Linux and macOS
- Download and install the latest build artifacts
- Pull the Docker image
- Linux DEB or RPM
Quick install for Linux and macOS
To install InfluxDB 3 Enterprise on Linux or macOS, download and run the quick
installer script for InfluxDB 3 Enterprise–for example, using curl
to download the script:
curl -O https://www.influxdata.com/d/install_influxdb3.sh \
&& sh install_influxdb3.sh enterpriseThe quick installer script is updated with each InfluxDB 3 Enterprise release, so it always installs the latest version.
Production deployment
For production deployments, use Linux DEB or RPM for built-in systemd sandboxing, or Docker with your own container security configuration.
For detailed security options, see Manage security.
Download and install the latest build artifacts
You can also download and install InfluxDB 3 Enterprise build artifacts directly:
Pull the Docker image
Run the following command to pull the influxdb:3-enterprise image, available for x86_64 (AMD64) and ARM64 architectures:
docker pull influxdb:3-enterpriseDocker automatically pulls the appropriate image for your system architecture.
Linux DEB or RPM
When installed via DEB or RPM on a systemd-enabled system, InfluxDB 3 Enterprise runs in a sandboxed environment.
The included systemd unit file configures the environment to provide security isolation for typical deployments.
For more information, see Manage security.
DEB and RPM installation is recommended for non-Docker production deployments due to built-in systemd sandboxing.
TOML configuration (Linux)
After you install the DEB or RPM package, the InfluxDB 3 Enterprise TOML
configuration file is located at /etc/influxdb3/influxdb3-enterprise.conf
and contains the following settings:
object-store:
filedata-dir:
/var/lib/influxdb3/dataplugin-dir:
/var/lib/influxdb3/pluginsnode-id:
primary-nodecluster-id:
primary-clustermode:
all
License required
InfluxDB 3 Enterprise requires an active license to start. See how to Activate a license.
Run as a system service (Linux)
InfluxDB 3 Enterprise DEB and RPM installs include service files for running as a managed system service on Linux:
- systemd: For modern Linux distributions
- SysV init: For legacy system compatibility
Run using systemd
On systemd systems, the influxdb3-enterprise unit file is
enabled on install, but the unit is not started in order to allow
configuration.
To start the database, enter the following commands:
# Start the service
systemctl start influxdb3-enterprise
# View status
systemctl status influxdb3-enterprise
# View logs
journalctl --unit influxdb3-enterpriseRun using SysV
On SysV init systems, influxdb3-enterprise is disabled on install
and can be enabled by adjusting /etc/default/influxdb3-enterprise to
contain ENABLED=yes.
To start the database, enter the following commands:
# Start the database
/etc/init.d/influxdb3-enterprise start
# View status
/etc/init.d/influxdb3-enterprise status
# View logs
tail -f /var/lib/influxdb3/influxdb3-enterprise.logVerify the installation
After installing InfluxDB 3 Enterprise, enter the following command to verify that it installed successfully:
influxdb3 --versionIf your system can’t locate influxdb3 following a quick install, source the configuration file (for example, .bashrc, .zshrc) for your shell–for example:
source ~/.zshrcFor information about setting up a multi-node InfluxDB 3 Enterprise cluster, see Create a multi-node cluster in the Get started guide.
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB 3 Enterprise and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support. Customers using a trial license can email trial@influxdata.com for assistance.