Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Manual. Switch to the latest stable version.
Launch ScyllaDB on AWS¶
This article will guide you through self-managed ScyllaDB deployment on AWS. For a fully-managed deployment of ScyllaDB as-a-service, see ScyllaDB Cloud documentation.
Launching Instances from ScyllaDB AMI¶
Choose your region, and click the Node link to open the EC2 instance creation wizard.
The following table shows the latest patch release. See AWS Images for earlier releases.
2025.1.13¶
Region
x86 AMI ID
Launch x86
ARM AMI ID
Launch ARM
Asia Pacific (Hyderabad)
ami-0f35322268c5ba278
ami-01bde2099f824a57c
Africa (Cape Town)
ami-0f276938ab36f3fa0
ami-0543495f89bcfd503
Asia Pacific (Mumbai)
ami-0d0d5c016ddd5419c
ami-007c3c653a13b4ab8
Europe (Stockholm)
ami-03660566a384aac10
ami-02a53af101acf3236
Europe (Paris)
ami-0291ddfb5b7b2f536
ami-0f93a4aef86a5a4d9
Europe (Milan)
ami-0a1cd91f303be42f9
ami-00f1fa555561ecfb2
Europe (London)
ami-0944bb8ed9dda0a3d
ami-06cdaeb14013085c6
Europe (Ireland)
ami-0767ab8c7873b924e
ami-01f6e65cf910f80f2
Asia Pacific (Osaka)
ami-09aa3c07df9337b26
ami-0dde63e5b9dc74a8e
Asia Pacific (Seoul)
ami-093bf5d867c231b08
ami-080022986f71e08f4
Asia Pacific (Tokyo)
ami-0f71e8f72f04967ab
ami-0d3d5ed9873cad948
Israel (Tel Aviv)
ami-0dbdf466f93f228aa
ami-02a5a94f9f08b6928
Canada (Central)
ami-0b067226949dd922a
ami-0ab7754e97430d774
South America (Sao Paulo)
ami-009124c7b9b461b7c
ami-0a401d8b9ba109cea
Asia Pacific (Hong Kong)
ami-082fdcb384acdd2b8
ami-0e290524d7a32cffe
Asia Pacific (Singapore)
ami-033d667d97ca83a06
ami-05ec8d302a9bd45a4
Asia Pacific (Sydney)
ami-02cbe31b1ddd0901f
ami-003cd0512be1ccf6b
Europe (Frankfurt)
ami-0336e8260aed07156
ami-086bf1f3572f4e0db
US East (N. Virginia)
ami-0d856178eae477e72
ami-04dfd8ce1aba6d5cb
US East (Ohio)
ami-02fca47b8c9d9ebbf
ami-08756af720c16d265
US West (N. California)
ami-0cb62cf90aa0730c3
ami-07e09ab20208372c3
US West (Oregon)
ami-08ba9378e03780196
ami-0d16ae42c817879ad
Choose the instance type. See Cloud Instance Recommendations for AWS for the list of recommended instances.
Other instance types will work, but with lesser performance. If you choose an instance type other than the recommended ones, make sure to run the scylla_setup script.
Configure your instance details.
Number of instances – If you are launching more than one instance, make sure to correctly set the IP of the first instance with the
seedsparameter - either in the User Data (see below) or after launch.Network – Configure the network settings.
Select your VPC.
Configure the security group. Ensure that all ScyllaDB ports are open.
Advanced Details> User Data – Here, you can add ScyllaDB configuration options in the JSON format. See scylla.yaml for information about supported options.
The following example shows a configuration using the most popular options.
cluster_name- The name of the cluster.seed_provider- The IP of the first node. New nodes will use the IP of this seed node to connect to the cluster and learn the cluster topology and state. See ScyllaDB Seed Nodes.post_configuration_script- A base64 encoded bash script that will be executed after the configuration is completed.start_scylla_on_first_boot- Starts ScyllaDB once the configuration is completed.
Example:
{ "scylla_yaml": { "cluster_name": "test-cluster", "seed_provider": [{"class_name": "org.apache.cassandra.locator.SimpleSeedProvider", "parameters": [{"seeds": "10.0.219.209"}]}], }, "post_configuration_script": "#! /bin/bash\nyum install cloud-init-cfn", "start_scylla_on_first_boot": true }
For full documentation of ScyllaDB AMI user data, see the ScyllaDB Image documentation.
Add storage.
ScyllaDB AMI requires XFS to work. You must attach at least one drive for ScyllaDB to use as XFS for the data directory. When attaching more than one drive, the AMI setup will install RAID0 on all of them.
The ScyllaDB AMI requires at least two instance store volumes. The ScyllaDB data directory will be formatted with XFS when the instance first boots. ScyllaDB will fail to start if only one volume is configured.
Tag your instance.
Click Launch Cluster. You now have a running ScyllaDB cluster on EC2.
Connect to the servers using the username
scyllaadm.ssh -i your-key-pair.pem scyllaadm@ec2-public-ipThe default file paths:
The
scylla.yamlfile:/etc/scylla/scylla.yamlData:
/var/lib/scylla/
To check that the ScyllaDB server is running, run:
nodetool status
Next Steps¶
Manage your clusters with ScyllaDB Manager
Monitor your cluster and data with ScyllaDB Monitoring
Get familiar with ScyllaDB’s command line reference guide.
Learn about ScyllaDB at ScyllaDB University