SOLVED AutoSSL doesn't work

Operating System & Version
CentOS 7
cPanel & WHM Version
94.0.5
Jan 14, 2019
6
3
3
Brazil
cPanel Access Level
Root Administrator
Hello Everybody!

I've a issue in my cpanel server.
My SSL certificates are expired and AutoSSL doesn't run anymore. I tried run manually, but the system don't show anything whe I execute.

AutoSSL don't log anymore even if I run from command line.
The last logs is from 24/fev

I don't know whats the problem. When I tried to run from command line this is the result:

Bash:
[root@ns1 cpanel]# /usr/local/cpanel/bin/autossl_check --all
/proc/stat format changed??? at /usr/local/cpanel/Cpanel/UPID.pm line 121.
[root@ns1 cpanel]#
If I check the Pending Queue, don't show me anything.

I tried change to another provider, installing let's encrypt plugin, but nothing happens.

Someone have a tip how troubleshoot this issue? If you need additional information, let me know.

Best Regards!
 
Last edited by a moderator:
Jan 14, 2019
6
3
3
Brazil
cPanel Access Level
Root Administrator
Hey Community!

I found the solution in this post:

If you have the same problem, you can run a workaround solution:
Run these commands with root permission.

Bash:
/bin/cp -v /proc/stat /tmp/stat

sed -i '/^intr /d' /tmp/stat

mount -v --bind /tmp/stat /proc/stat
And then run AutoSSL, you can do it from WHM or command line:
Bash:
  /usr/local/cpanel/bin/autossl_check --user username
To remove the workaround run these:
Bash:
umount -v /proc/stat
rm -fv /tmp/stat
This solution worked for me! Thanks!
 
  • Like
Reactions: kodeslogic

kodeslogic

Well-Known Member
PartnerNOC
Apr 26, 2020
599
273
138
IN
cPanel Access Level
Root Administrator
Glad to see you found the solution :)