- Newest
- Most votes
- Most comments
The SSL_ERROR_SYSCALL error you're encountering suggests there's an issue with the SSL/TLS connection, possibly related to the system's SSL configuration or network settings. Here are some potential causes and solutions:
-
Time synchronization: Ensure your system's time is correctly synchronized. Incorrect system time can cause SSL certificate validation failures. Use the chrony service to sync time:
sudo systemctl start chronyd sudo systemctl enable chronyd
-
OpenSSL version: Check if you have the latest version of OpenSSL installed. Amazon Linux 2023 should come with an up-to-date version, but you can verify and update if necessary:
openssl version sudo dnf update openssl
-
CA certificates: Ensure your CA certificates are up-to-date:
sudo update-ca-trust
-
Firewall settings: Check if your firewall is blocking outgoing HTTPS connections. Temporarily disable the firewall to test:
sudo systemctl stop firewalld
-
DNS resolution: Verify that DNS resolution is working correctly. Try using a different DNS server temporarily:
echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf
-
Network configuration: If you're using a proxy or VPN, ensure it's configured correctly and not interfering with SSL connections.
-
SELinux: If SELinux is enabled, it might be interfering with network connections. Try setting it to permissive mode temporarily:
sudo setenforce 0
After trying these steps, restart your system and test the connection again. If the issue persists, you may need to investigate further by checking system logs or network configurations specific to your VMware environment.
Sources
Tutorial: Configure SSL/TLS on AL2023 - Amazon Linux 2023
Amazon Linux 2023 version 2023.1.20230825 release notes - Amazon Linux 2023
Amazon Linux 2023 version 2023.5.20240805 release notes - Amazon Linux 2023
Found a much easier way to get working for me solution: using a vagrant box, for example https://portal.cloud.hashicorp.com/vagrant/discover/gbailey/al2023
Relevant content
- asked 3 months ago
- asked 7 months ago
- asked a year ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated 6 months ago