Jefims 0 Posted November 20, 2020 Share Posted November 20, 2020 Our company uses eset command line scanner + PHP to scan files: exec("/opt/eset/esets/sbin/esets_scan --clean-mode=none " . $fileToScan . " 2>&1", $output, $scanReturnCode); From yesterday (19.11.2020) this command suddenly stopped working with error code ($scanReturnCode): 139. What do this error code means, what is code description? I was unnable to find any information about this code in google. Why the problem might be appeared suddenly and how to fix it? Link to comment Share on other sites More sharing options...
Administrators Solution Marcos 4,694 Posted November 20, 2020 Administrators Solution Share Posted November 20, 2020 Please try the following: Stop the esets service : systemctl stop esets Delete content of modules directory in /var/opt/eset/esets/lib/ Delete content of update cache directory in /var/opt/eset/esets/lib/data/updfiles/ Run update manually : sudo /opt/eset/esets/sbin/esets_update --verbose Deleted modules will be replaced with fresh Start esets service, the issue should disappear : systemctl start esets Link to comment Share on other sites More sharing options...
Jefims 0 Posted November 20, 2020 Author Share Posted November 20, 2020 54 minutes ago, Marcos said: Please try the following: Stop the esets service : systemctl stop esets Delete content of modules directory in /var/opt/eset/esets/lib/ Delete content of update cache directory in /var/opt/eset/esets/lib/data/updfiles/ Run update manually : sudo /opt/eset/esets/sbin/esets_update --verbose Deleted modules will be replaced with fresh Start esets service, the issue should disappear : systemctl start esets Thanks a lot, it helped to fix the problem🙂 Anyway, it's interesting, what was the possible error cause? Link to comment Share on other sites More sharing options...
Administrators Marcos 4,694 Posted November 20, 2020 Administrators Share Posted November 20, 2020 There was a problem with an update yesterday which caused segmentation faults on Linux. Link to comment Share on other sites More sharing options...
Recommended Posts