インストール直後の Cassandra (Single-Node Cluster) が起動しません
Cassandra 習得のため,シンプルな Single-Node Cluster でインストールし起動を試みましたが,起動が成功しません.
手順はこちらのサイト(英文)に従いました.
ざっくり以下の手順です.
- VirtualBox に CentOS7 で新規仮想マシンを構築
- JDK をインストールし,/usr/local/java/ に置き,パスを通す
- Apache Cassandra をインストールし,/root/cassandra/ に置き,lib や log の必要なディレクトリを作り,Cassandra に書込み権限を付与
Root user で以下の起動コマンド
# sh ~/cassandra/bin/cassandra
すると以下のメッセージ
Running Cassandra as root user or group is not recommended - please start Cassandra using a different system user.
If you really want to force running Cassandra as root, use -R command line option.
-R オプションで再度,起動コマンド
# sh ~/cassandra/bin/cassandra -R
以下のエラーメッセージとなります.
# [0.000s][warning][gc] -Xloggc is deprecated. Will use -Xlog:gc:/root/cassandra/bin/../logs/gc.log instead.
intx ThreadPriorityPolicy=42 is outside the allowed range [ 0 ... 1 ]
Improperly specified VM option 'ThreadPriorityPolicy=42'
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
JVM 関連の問題のようですが,行き詰ってしまっています.
原因,解決法等,お分かりでしたらご教示お願いします.
環境は以下の通りです.
Windows 10
VirtualBox 5.1.28
CentOS-7-x86_64-Minimal-1611
jdk-9.0.1
apache-cassandra-3.11.1