Hello dear friends,
I had the same problem and found out that in order to solve the problem at the beginning of the installation, you need to download the install.sh file and open it in a text editor. Then, look for the following codes and modify them:
nodes=(https://node.aapanel.com)
to
nodes=(http://node.aapanel.com)
and also:
if [ "$SET_SSL" == true ]; then
echo "aaPanel Internet Address: https://${getIpAddress}:${panelPort}$auth_path"
echo "aaPanel Internal Address: https://${intenal_ip}:${panelPort}$auth_path"
otherwise
echo "aaPanel Internet Address: http://${getIpAddress}:${panelPort}$auth_path"
echo "aaPanel Internal Address: http://${intenal_ip}:${panelPort}$auth_path"
fi
to
if [ "$SET_SSL" == true ]; then
echo "aaPanel Internet Address: http://${getIpAddress}:${panelPort}$auth_path"
echo "aaPanel Internal Address: http://${intenal_ip}:${panelPort}$auth_path"
otherwise
echo "aaPanel Internet Address: http://${getIpAddress}:${panelPort}$auth_path"
echo "aaPanel Internal Address: http://${intenal_ip}:${panelPort}$auth_path"
fi
This error is due to an SSL problem. The server that you are connecting to the service from routes to HTTPS instead of HTTP. Therefore, to solve this problem, you need to use HTTP instead of HTTPS. I tested this and the installation was successful.
Please note that this is my personal recommendation and may not be useful for you. Before making any changes, it is better to consult with your developer or server administrator.
Citations:
[1] https://ppl-ai-file-upload.s3.amazonaws.com/web/direct-files/3001026/ccb34fb2-0c57-4073-b890-c4d95061328b/install-ubuntu_6.0_en.sh