LoginSignup
0
1

More than 5 years have passed since last update.

Apache Cassandraのインストール

Posted at

やってみたのでメモ

前提条件

  • CentOS7
  • Java8インストール済み

手順

  1. リポジトリ情報を登録する

    # vi /etc/yum.repos.d/cassandra.repo
    
    cassandra.repo
    [cassandra]
    name=Apache Cassandra
    baseurl=https://www.apache.org/dist/cassandra/redhat/311x/
    gpgcheck=1
    repo_gpgcheck=1
    gpgkey=https://www.apache.org/dist/cassandra/KEYS
    
  2. yumでインストールする

    # yum -y install cassandra
    
  3. 再読み込みする

    # systemctl daemon-reload
    
  4. 起動する

    # systemctl start cassandra
    

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1