Apache Cassandra:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
第44行: 第44行:


* cluster_name改成自己要的名稱。
* cluster_name改成自己要的名稱。
* listen_address改成非localhost的位置,這樣外部才能連線。


== 連結 ==
== 連結 ==


* {{Official|https://cassandra.apache.org/}}
* {{Official|https://cassandra.apache.org/}}

2021年7月29日 (四) 13:51的版本

Apache Cassandra是一套资料库。

安装

先安装OpenJDK 11:

sudo apt install -y openjdk-11-jdk; sudo apt clean

再来安装Cassandra:

curl -L https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -; echo "deb http://www.apache.org/dist/cassandra/debian 40x main" | sudo tee /etc/apt/sources.list.d/cassandra.list; sudo apt update; sudo apt install -y cassandra

设定

防火墙

Port Usage Comment
7000/tcp Cluster communication
7001/tcp Cluster communication (TLS mode)
7199/tcp JMX
9042/tcp Native protocol

/etc/cassandra/cassandra.yml

  • cluster_name改成自己要的名称。
  • listen_address改成非localhost的位置,这样外部才能连线。

连结