Skip to main content

EA4 Stuck on Loading packages

Comments

2 comments

  • NixTree
    Two things I would ask you to check 1. Check if yum is working. EA4 is fully based on yum and it wont be working if yum is having any issue. So just see if yum update is working fine. If not you might need to fix it which can be either a firewall issue or resolution issue. try the below fixes 1. Check /etc/resolv.conf and replace the entries with the below ones nameserver 8.8.8.8 nameserver 8.8.4.4 2. If still not working, then please disable the firewall and confirm that no rules is on at the moment using iptables command Sample out put after disabling the firewall fully ---------------------------------------------------- # iptables -L -n Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
    0
  • JacobPerkins
    Hi, We found a bug in v58, that we're fixing in case EA-5257. You can try this to see if it works:
    --- a/Cpanel/PackMan/Sys.pm +++ b/Cpanel/PackMan/Sys.pm @@ -125,7 +125,7 @@ sub _call_python_json { } my $result_hr; - eval { $result_hr = Cpanel::JSON::Load( ( split( m{\nJSON_OUTPUT_HEADER\n}, $run->stdout() ) )[1] ); }; + eval { $result_hr = Cpanel::JSON::Load( ( split( /JSON_OUTPUT_HEADER\n/, $run->stdout() ) )[-1] ); }; if ($@) { logger->debug( "Failed to read JSON output from $path: $@: " . substr( $run->stdout(), 0, 256 ) ); return;
    There is a small '\n' in front of JSON_OUTPUT_HEADER, that causes the EA4 UI to fail if yum output is blank. Can you try to adjust this and see if that helps? You can also throw in a ticket and we can get this tested as well. Thanks!
    0

Please sign in to leave a comment.