License Management

check_plesk_licence

Description:

this is a simple php file that uses php-curl or curl command line to check your plesk licenses to see if they are valid within so may days or expired

Current Version

Last Release Date

2013-10-13

Compatible With

  • Nagios 1.x
  • Nagios 2.x
  • Nagios 3.x
  • Nagios XI
  • Nagios Fusion
  • Nagios Reactor

Owner

License

GPL


Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
Project Files
Project Notes
Reviews (1) Add a Review
script update
by wrufeger, April 30, 2024
reading password from etc/psa/.psa.shadow does not work, rest of script updated to work with current plesk and php8:

#!/usr/bin/env php
xpath('server/get/result/key');
if ($nodes) {
foreach ($nodes[0]->property as $n) {
if ($n->name == 'lim_date') {
$node = $n->value;
break;
}
}
}
if (empty($node)) {
fwrite(STDERR, "UNKNOWN: Could not retrieve license info from server responsen");
exit(NAGIOS_RETURN_UNKNOWN);
}
$expirationDate = (string) $node[0];
$future = strtotime($expirationDate);
$now = strtotime("now");
$diff = $future - $now;
$daysToExpire = floor($diff/86400);
if ($daysToExpire
Helpful? Yes  No 
Add a Review

You must be logged in to submit a review.

Thank you for your review!

Your review has been submitted and is pending approval.

Recommend

To:


From:


Thank you for your recommendation!

Your recommendation has been sent.

Project Stats
Rating
3 (1)
Favorites
0
Views
31,873