content/influxdb3/cloud-serverless/sign-up.md
InfluxDB Cloud Serverless is a fully managed and hosted version of InfluxDB 3, the time series platform purpose-built to collect and store time series data.
Start using {{< product-name >}} at no cost with the Free Plan. Use it as much and as long as you like within the plan's rate-limits. Limits are designed to let you monitor 5-10 sensors, stacks or servers comfortably.
[!Note] Users on the Free Plan are limited to one organization.
Choose one of the following:
To subscribe to an InfluxDB Cloud Serverless Free Plan through InfluxData, go to InfluxDB Cloud.
If you originally signed up with email but want to enable social sign-on (SSO), log in through your SSO provider using the same email address you used to create your {{< product-name >}} account.
To subscribe to an InfluxDB Cloud Serverless Usage-Based plan and pay through your Amazon Web Services (AWS) account:
<!-- , **Microsoft Azure**, or **Google Cloud Platform (GCP)** --> <!-- - **AWS** -->All usage charges will be paid through the subscribed AWS account.
<!-- - **Microsoft** Sign in to Microsoft Azure, navigate to the [InfluxDB Cloud product on Azure Marketplace](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/influxdata.influxdb-cloud?ocid=iflxdbcloud_influxdata_docs_gettingstarted), and follow the prompts to subscribe. After you click **Set Up Your Account**, enter your credentials, and then click **Start Now**. All usage charges will be paid through the subscribed Microsoft account. - **GCP** Sign in to GCP, navigate to the [InfluxDB Cloud product on GCP Marketplace](https://console.cloud.google.com/marketplace/details/influxdata-public/cloud2-gcp-marketplace-prod?utm_campaign=influxdb-cloud&utm_medium=docs&utm_source=influxdata), and follow the prompts to subscribe. After you click **Set Up Your Account**, enter your credentials, and then click **Start Now**. All usage charges will be paid through the subscribed GCP account. -->{{%note%}} Currently, we do not support using an existing InfluxDB Cloud account to sign up for an InfluxDB Cloud plan through the AWS Marketplace.
{{%/note%}}
2. If you signed up with your email address, InfluxDB Cloud requires email verification to complete the sign up process. Verify your email address by opening the email sent to the address you provided and clicking Verify Your Email. 3. (If you subscribed through InfluxData) Choose your cloud provider. 4. Select a provider and region for your {{< product-name >}} instance. The following are available:
{{< cloud_regions type="iox-list" >}}
5. Enter your company name. 6. (If you subscribed through InfluxData) Review the terms of the agreement, and then select I have viewed and agree to InfluxDB Cloud Services Subscription Agreement and InfluxData Global Data Processing Agreement. For details on the agreements, see the InfluxDB Cloud: Services Subscription Agreement and the InfluxData Global Data Processing Agreement.
Click Continue, and then choose your plan:
To use the influx CLI to manage and interact with your InfluxDB Cloud instance,
complete the following steps:
{{< tabs-wrapper >}} {{% tabs %}} macOS Linux Windows {{% /tabs %}}
<!-------------------------------- BEGIN macOS -------------------------------->{{% tab-content %}}
Click the following button to download and install influx CLI for macOS.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-patch cli=true >}}-darwin-amd64.tar.gz" download>influx CLI (macOS)</a>
Note: The commands below are examples. Adjust the file names, paths, and utilities to your own needs.
To unpackage the downloaded archive, double click the archive file in Finder or run the following command in a macOS command prompt application such Terminal or iTerm2:
# Unpackage contents to the current working directory
tar zxvf ~/Downloads/influxdb2-client-{{< latest-patch cli=true >}}-darwin-amd64.tar.gz
If you choose, you can place influx in your $PATH or you can
prefix the executable with ./ to run in place. If the binary is on your $PATH, you can run influx from any directory. Otherwise, you must specify the location of the CLI (for example, ./influxor path/to/influx).
Note: If you have the 1.x binary on your $PATH, moving the 2.0 binary to your $PATH will overwrite the 1.x binary because they have the same name.
# Copy the influx binary to your $PATH
sudo cp influxdb2-client-{{< latest-patch cli=true >}}-darwin-amd64/influx /usr/local/bin/
[!Note] If you rename the binary, all references to
influxin this documentation refer to the renamed binary.
If running influx on macOS Catalina, you must manually authorize the
influx binary in the Security & Privacy section of System Preferences.
To avoid having to pass your InfluxDB API token with each influx command, set up a configuration profile that stores your credentials.
In a terminal, run the following command:
# Set up a configuration profile
influx config create -n default \
-u https://cloud2.influxdata.com \
-o example-org \
-t mySuP3rS3cr3tT0keN \
-a
This configures a new profile named default and makes the profile active so your influx CLI commands run against this instance.
For more detail, see influx config.
influx CLI commandsTo see all available influx commands, type influx -h or check out influx - InfluxDB command line interface.
{{% /tab-content %}}
<!--------------------------------- END macOS ---------------------------------> <!-------------------------------- BEGIN Linux -------------------------------->{{% tab-content %}}
Click one of the following buttons to download and install the influx CLI appropriate for your chipset.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-patch cli=true >}}-linux-amd64.tar.gz" download >influx CLI (amd64)</a> <a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-patch cli=true >}}-linux-arm64.tar.gz" download >influx CLI (arm)</a>
Note: The commands below are examples. Adjust the file names, paths, and utilities to your own needs.
# Unpackage contents to the current working directory
tar xvfz influxdb2-client-{{< latest-patch cli=true >}}-linux-amd64.tar.gz
If you choose, you can place influx in your $PATH or you can
prefix the executable with ./ to run in place. If the binary is on your $PATH, you can run influx from any directory. Otherwise, you must specify the location of the CLI (for example, ./influxor path/to/influx).
Note: If you have the 1.x binary on your $PATH, moving the 2.0 binary to your $PATH will overwrite the 1.x binary because they have the same name.
# Copy the influx and influxd binary to your $PATH
sudo cp influxdb2-client-{{< latest-patch cli=true >}}-linux-amd64/influx /usr/local/bin/
[!Note] If you rename the binary, all references to
influxin this documentation refer to the renamed binary.
To avoid having to pass your InfluxDB API token with each influx command, set up a configuration profile that stores your credentials.
In a terminal, run the following command:
# Set up a configuration profile
influx config create -n default \
-u https://cloud2.influxdata.com \
-o example-org \
-t mySuP3rS3cr3tT0keN \
-a
This configures a new profile named default and makes the profile active so your influx CLI commands run against this instance.
For more detail, see influx config.
influx CLI commandsTo see all available influx commands, type influx -h or check out influx - InfluxDB command line interface.
{{% /tab-content %}}
<!--------------------------------- END Linux ---------------------------------> <!-------------------------------- BEGIN Windows -------------------------------->{{% tab-content %}}
Click the following button to download and install influx CLI for Windows.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-patch cli=true >}}-windows-amd64.zip" download>influx CLI (Windows)</a>
Expand the downloaded archive into C:\Program Files\InfluxData\influxdb.
When using the influx CLI for the first time, Windows Defender will appear with the following message: Windows Defender Firewall has blocked some features of this app.
influx CLI commandsTo see all available influx commands, type influx -h or check out influx - InfluxDB command line interface.
{{% /tab-content %}}
<!--------------------------------- END Windows --------------------------------->{{< /tabs-wrapper >}}
Sign in to {{< product-name >}} using your email address and password.
<a class="btn" href="https://cloud2.influxdata.com">Sign in to {{< product-name >}} now</a>
To learn how to get started working with time series data, see Get Started.