aaPanel_Kern Hello, I suggest you change to another operating system. The official source of centos 7 is no longer maintained. aaP_tmjwda003
aaP_tmjwda003 aaPanel_Kern ah, thanks, but can you tell me some operation sytem like centos7, im newbie from web game source on linux, try to study, but most of source required centos.
aaP_tmjwda003 aaPanel_Kern hello, i have new issues on rocky linux 9.3 minimal Curl error (77): Problem with the SSL CA cert (path? access rights?) for http://mirrors.rockylinux.org/mirrorlist?arch=x86_64&repo=BaseOS-9 [error stting certficate fie: /etc/pki/tls/certs/ca-bundle.crt] Error: failed to download metadata for repo 'baseos': cannot prepare internal mirrorlist: Curl error (77): Problem with the SSL CA cert (path? access rights?) for http://mirrors.rockylinux.org/mirrorlist?arch=x86_64&repo=BaseOS-9 [error stting certficate fie: /etc/pki/tls/certs/ca-bundle.crt]
aaPanel_Kern aaP_tmjwda003 Check if the /etc/pki/tls/certs/ca-bundle.crt file exists on your system: ls -l /etc/pki/tls/certs/ca-bundle.crt or try reinstall the package sudo yum reinstall ca-certificates
aaP_tmjwda003 aaPanel_Kern sudo yum reinstall ca-certificates My os no have this file, try reinstall still get curl 77
aaPanel_Kern aaP_tmjwda003 try mkdir -p /etc/pki/tls/certs cd /etc/pki/tls/certs wget -O /etc/pki/tls/certs/ca-bundle.crt https://curl.se/ca/cacert.pem --no-check-certificate chmod 444 /etc/pki/tls/certs/ca-bundle.crt
aaP_tmjwda003 aaPanel_Kern wget -O /etc/pki/tls/certs/ca-bundle.crt https://curl.se/ca/cacert.pem --no-check-certificate -bash: wget: command not found
aaPanel_Kern https://curl.se/ca/cacert.pem After you download this using a browser, rename it to ca-bundle.crt, overwrite it to /etc/pki/tls/certs/ca-bundle.crt, and then give permissions. chmod 444 /etc/pki/tls/certs/ca-bundle.crt aaP_tmjwda003