https://docs.zammad.org/en/pre-release/install/elasticsearch/connect-configure-elasticsearch.html
I had trouble in a workshop, I think it was Ubuntu 24.04. that bash did not like the ! in the command. We needed to use ' instead of " to quote the rails command.
sudo cat /etc/elasticsearch/certs/http_ca.crt | zammad run rails r "SSLCertificate.create!(certificate: STDIN.read)"
to
sudo cat /etc/elasticsearch/certs/http_ca.crt | zammad run rails r 'SSLCertificate.create!(certificate: STDIN.read)'
Please verify and maybe adjust.
https://docs.zammad.org/en/pre-release/install/elasticsearch/connect-configure-elasticsearch.html
I had trouble in a workshop, I think it was Ubuntu 24.04. that
bashdid not like the!in the command. We needed to use'instead of"to quote the rails command.sudo cat /etc/elasticsearch/certs/http_ca.crt | zammad run rails r "SSLCertificate.create!(certificate: STDIN.read)"to
sudo cat /etc/elasticsearch/certs/http_ca.crt | zammad run rails r 'SSLCertificate.create!(certificate: STDIN.read)'Please verify and maybe adjust.