Cassandra 安装配置

官网下载

https://cassandra.apache.org/download/

配置

  • conf/cassandra.yaml
cluster_name: 'QJL Cluster'

# 需要写 ip,尽量别用 hostname
- seeds: "192.168.10.17"

# 本机ip,不能配 0.0.0.0
listen_address: 192.168.10.17

storage_port: 7000

native_transport_port: 9042

rpc_address: 0.0.0.0

# 本机 ip
broadcast_rpc_address: 192.168.10.64

启停

# 前台启动
./bin/cassandra -f

# 后台启动
./bin/cassandra 

# 查看进程
ps aux | grep cassandra

# 查看集群状态
./bin/nodetool status

客户端操作

# 客户端连接
./bin/cqlsh localhost

# 查看keyspace
desc keyspaces;
use myks;

#查看 table
desc tables;

数据目录

data目录,停掉 Cassandra 可以直接删

你可能感兴趣的:(系统部署教程,Cassandra)