This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configure socket buffers, leave unset to use the system defaults | |
# Values will be doubled by the kernel | |
# It is recommended you do not set any of these values unless you really need to | |
socket_buffer: | |
# Default is net.core.rmem_default (/proc/sys/net/core/rmem_default) | |
# Maximum max is net.core.rmem_max (/proc/sys/net/core/rmem_max) | |
receive: 16384 | |
# Configure message sequence tracking | |
message_tracking: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum -y install wget | |
sudo wget -O /etc/yum.repos.d/scylla.repo http://downloads.scylladb.com/rpm/centos/scylla.repo | |
sudo yum -y install epel-release | |
sudo yum -y install scylla-server scylla-jmx scylla-tools | |
# Set the listen_address and seed_provider seeds in scylla.yaml to the internal 10.x.x.x IP address | |
sudo /usr/lib/scylla/scylla_setup |