Corro questo:
ssh -t -vvv -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ubuntu@${INSTANCE_ADDRESS} <<EOI
# Setup Oracle Java
...
# Install dependencies - mysql must be built from source, as the 12.04 apt-get hangs
export DEBIAN_FRONTEND=noninteractive
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password password diurd'
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password_again password diurd'
sudo apt-get -q -y -V --force-yes --reinstall install mysql-server-5.5
echo "ALL DONE with druid environment setup!"
exit
EOI
Nota: ho provato con e senza -t in ssh.
L'output di debug da -vvv è questo:
...
ldconfig deferred processing now taking place
ALL DONE with druid environment setup!
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
E poi il processo rimane lì per sempre. Perché il comando ssh non termina? Ho provato con -t e senza, e ho provato con l'uscita e senza. Non fa differenza :(
Aggiornamento: quando digito 'jobs' alla fine dello script, vedo:
JOBS:
[1]- Running nohup bin/zookeeper-server-start.sh config/zookeeper.properties 2>&1 > /dev/null &
[2]+ Running nohup bin/kafka-server-start.sh config/server.properties 2>&1 > /dev/null &
Come posso eseguire questi servizi e avere ancora una sessione SSH che termina?
Aggiornamento: ora ho rinnegato manualmente questi processi. La cosa non esce ancora. Compagno WTF?
Aggiornamento: quando si esegue riga per riga, due comandi non tornano alla shell senza premere CR:
nohup bin/zookeeper-server-start.sh config/zookeeper.properties &
nohup bin/kafka-server-start.sh config/server.properties &