Skip to content

Commit

Permalink
debug: Job for scylla-server.service failed
Browse files Browse the repository at this point in the history
Change-Id: I70ef59c592b6af33062a00d74005d0a8c1fb56e4
  • Loading branch information
javeme committed Apr 18, 2021
1 parent 723fa10 commit d7f1109
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion hugegraph-dist/src/assembly/travis/install-scylladb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ sudo apt-get install scylla

cat /etc/scylla/scylla.yaml

# setup scylladb with scylla_setup by expect
sudo apt-get install expect
sudo expect <<EOF
spawn sudo scylla_setup
expect {
"YES/no" { send "no\r"; exp_continue }
eof
}
EOF

# start scylladb service
#sudo /usr/bin/scylla --options-file /etc/scylla/scylla.yaml ${SCYLLA_OPTS} ${SCYLLA_OPTS_LOG} &
sudo systemctl start scylla-server
sudo systemctl start scylla-server || (sudo systemctl status scylla-server.service && exit 1)

0 comments on commit d7f1109

Please sign in to comment.