diff --git a/mkdocs/docs/adv/ansible.md b/mkdocs/docs/adv/ansible.md index 2a6433b..55d46df 100644 --- a/mkdocs/docs/adv/ansible.md +++ b/mkdocs/docs/adv/ansible.md @@ -69,6 +69,22 @@ sudo systemctl start ssh sudo systemctl status ssh ``` +**Note**: If you get "Unit ssh.service could not be found", you need to install the SSH server first: + +```bash +# Install OpenSSH server +sudo apt install openssh-server + +# Then start and enable SSH +sudo systemctl start ssh +sudo systemctl enable ssh + +# Verify SSH is running and listening +sudo ss -tlnp | grep :22 +``` + +You should see SSH listening on port 22. + ### 2. Configure SSH Key Authentication ```bash diff --git a/start-production.sh b/start-production.sh index 8018f87..2b2bcfe 100755 --- a/start-production.sh +++ b/start-production.sh @@ -1,5 +1,22 @@ #!/bin/bash +cat << "EOF" + ██████╗██╗ ██╗ █████╗ ███╗ ██╗ ██████╗ ███████╗ + ██╔════╝██║ ██║██╔══██╗████╗ ██║██╔════╝ ██╔════╝ + ██║ ███████║███████║██╔██╗ ██║██║ ███╗█████╗ + ██║ ██╔══██║██╔══██║██║╚██╗██║██║ ██║██╔══╝ + ╚██████╗██║ ██║██║ ██║██║ ╚████║╚██████╔╝███████╗ + ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝ + + ███╗ ███╗ █████╗ ██╗ ██╗███████╗██████╗ + ████╗ ████║██╔══██╗██║ ██╔╝██╔════╝██╔══██╗ + ██╔████╔██║███████║█████╔╝ █████╗ ██████╔╝ + ██║╚██╔╝██║██╔══██║██╔═██╗ ██╔══╝ ██╔══██╗ + ██║ ╚═╝ ██║██║ ██║██║ ██╗███████╗██║ ██║ + ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ + Start Production Wizard +EOF + echo "#############################################################" echo "# " echo "# Changemaker.lite Production Deployment "