Tôi chạy cái này:
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
Lưu ý: Tôi đã thử với và không có -t trong ssh.
Đầu ra gỡ lỗi từ -vvv là thế này:
...
ldconfig deferred processing now taking place
ALL DONE with druid environment setup!
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
Và sau đó quá trình chỉ ngồi đó mãi mãi. Tại sao lệnh ssh không kết thúc? Tôi đã thử với -t và không có, và tôi đã thử với lối ra và không có. Nó không tạo ra sự khác biệt :(
Cập nhật: Khi tôi nhập 'công việc' ở cuối tập lệnh, tôi thấy:
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 &
Làm cách nào tôi có thể chạy các dịch vụ này mà vẫn có phiên ssh kết thúc?
Cập nhật: Bây giờ tôi từ chối các quy trình này theo cách thủ công. Điều vẫn không thoát. Bạn đời WTF?
Cập nhật: Khi thực hiện từng dòng một, hai lệnh không trở về shell mà không nhấn CR:
nohup bin/zookeeper-server-start.sh config/zookeeper.properties &
nohup bin/kafka-server-start.sh config/server.properties &