Scylladb部署

广大3年前技术文章1833

Scylladb部署

一、部署

centos 7.9上部署scylla-4.2

下面步骤都需要root权限或者sudo权限

1、添加scylladb 回购文件和yum源

yum install epel-release
curl -o /etc/yum.repos.d/scylla.repo -L http://repositories.scylladb.com/scylla/repo/ef1f1a47-2243-4237-a22b-4244266affc0/centos/scylladb-4.2.repo

2、删除abrt

自动错误报告工具(abrt)会与ScyllaDB coredump 配置发生冲突,需要卸载

yum remove -y abrt

3、安装scylla

yum install scylla

· 安装相应的小版本的scylladb(4.2下的小版本)

--查看提供的具体小版本
yum provides scylla

--进行安装具体小版本
yum install scylla-4.2.1-0.20201108.4fb8ebccff.x86_64

4、配置参数

配置文件默认位于/etc/scylla

4.1 scylla.yaml

vi  /etc/scylla/scylla.yaml
cluster_name: 'dtstack'
listen_address: 172.16.121.151
rpc_address: 172.16.121.151
seed_provider:
    - class_name: org.apache.cassandra.locator.SimpleSeedProvider
      parameters:
          - seeds: "172.16.121.151,172.16.121.152"
endpoint_snitch: GossipingPropertyFileSnitch

4.2 cassandra-rackdc.properties

vi /etc/scylla/cassandra-rackdc.properties

dc=my_data_center
rack=my_rack
prefer_local=true

4.3 检查配置

检查配置命令:
cat /etc/scylla/scylla.yaml | grep cluster_name
cat /etc/scylla/scylla.yaml | grep seeds:
cat /etc/scylla/scylla.yaml | grep endpoint_snitch
cat /etc/scylla/scylla.yaml | grep authenticator
cat /etc/scylla/scylla.yaml | grep -E "listen_address|rpc_address"
scylla --version

5、运行scylla_setup

运行scylla_setup,进行配置主机相关的设置

[root@172-16-121-151 ~]# scylla_setup
Skip any of the following steps by answering 'no'
Do you want to run check your kernel version?
Yes - runs a  script to verify that the kernel for this instance qualifies to run Scylla. No - skips the kernel check.
[YES/no]

 

· IOTune 这一步必须要选择yes,这步做基准测试生成/etc/scylla.d/io.conf配置文件,如果没有 XFS文件系统 或io.conf文件,ScyllaDB 将无法运行。要绕过此检查,需要 ScyllaDB 设置为开发者模式,调用脚本执行命令如下,该脚本会将开发者模式设置写入/etc/scylla.d/dev-mode.conf文件

scylla_dev_mode_setup --developer-mode 1

6、启动scylla服务

systemctl start scylla-server

--启动、停止、重启、查看 scylla服务的命令
systemctl start|stop|restart|status scylla-server

7、检查集群信息

nodetool -h ::FFFF:127.0.0.1 status


相关文章

Keepalived安装部署

Keepalived安装部署

安装keepalivedyum 安装keepalivedyum install keepalivedkeepalived.conf配置文件进行调整,其中state设置主备状态,interface设置对...

Hive删除外部表

Hive删除外部表

删除外部表操作例:1.首先我们创建一个外部表create EXTERNAL table if not exists mgtest(id int, name string)row format deli...

Centos系统支持TLS 1.3

Centos系统支持TLS 1.3

一、背景1、生产的 CentOS 7 服务器需要启用 TLS 1.32、Openssl介绍OpenSSL 是用于传输层安全性 (TLS) 和安全套接字层 (SSL) 协议的强大、商业级且功能齐全的工具...

Ambari集群Spark3.x动态资源分配

Ambari集群Spark3.x动态资源分配

环境节点hdp01HDP3.1.5hdp02Spark3.2.4hdp03首先Spark配置History服务配置spark-defaults.confspark.master            ...

MySQL运维实战(4.9) SQL_MODE之NO_UNSIGNED_SUBTRACTION

在mysql数据库中,unsigned表示不存负数,如果unsigned类型的字段作运算,得到的结果为负数,SQL会报错。mysql> create table t...

bind服务-2

bind服务-2

五、部署一个正向解析5.1)教学案例对zutuanxue.com域名做解析,解析要求如下:www 解析为A记录 IP地址为 192.168.11.88news 做别名解析CNAME 解析为 www1)...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。