我尝试在我的Ubuntu16.04系统上安装ScyllaDB。但我遇到了以下错误:
aims@aims:~$ sudo scylla_setup
sudo: /etc/sudoers.d is world writable
[sudo] password for aims:
Skip any of the following steps by answering 'no'
Do you want to run kernel version check?
Answer yes to have this script verify that the currently installed kernel is qualified to run Scylla; answer no to skip this check.
[YES/no]yes
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
scylla : Depends: scylla-tools but it is not going to be installed
xfsprogs : Depends: libreadline5 (>= 5.2) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).我试着为它找出解决方案,但没有得到它。请让我知道我哪里错了。
发布于 2016-11-26 20:12:51
首先,您需要解决unmet dependencies:
将scylla 1.4存储库添加到您的sources.list:
sudo wget -O /etc/apt/sources.list.d/scylla.list http://downloads.scylladb.com/deb/ubuntu/scylla-1.4-xenial.list更新您的系统
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade安装libreadline5,它可以从main存储库获得:
sudo apt-get install libreadline5安装scylla
sudo apt-get install scylla运行:
sudo scylla_setup启用/启动服务:
sudo systemctl enable scylla-server
sudo systemctl start scylla-server
sudo systemctl enable scylla-jmx
sudo systemctl start scylla-jmxhttps://stackoverflow.com/questions/40816398
复制相似问题