PlaatOnline is a small tool to monitor IP network devices on a Raspberry Pi. The tool create a web page showing the uptime of each configured IP device. There is also uptime per day chart. The web page can be protected with a username and password.
Release Notes
Click here to read the release notes.
Download
plaatonline.zip (69.1 KiB, 864 hits)
Source Code
Checkout the source code here.
Installation Manual
Execute the following steps to install the software on your Raspberry Pi.
### Step 1 - Install following depending thirdparty software packages sudo apt-get install apache2 sudo apt-get install php sudo apt-get install mysql-server ### Step 2 - Create mysql plaatonline database mysql -u root -p CREATE DATABASE plaatonline; GRANT ALL ON plaatonline.* TO plaatonline@"127.0.0.1" IDENTIFIED BY "plaatonline"; FLUSH PRIVILEGES; QUIT; ### Step 3. Download PlaatOnline from plaatsoft.nl. Copy zip file to /tmp on raspberry pi login on the raspberry with user `pi` mkdir /var/www/html/plaatonline cd /var/www/html/plaatonline sudo cp /tmp/plaatonline.zip . sudo unzip *.zip ### Step 4. Create config.inc with correct database settings cd /var/www/html/plaatonline sudo cp config.inc.sample config.inc ### Step 5. Add the following cron job: crontab -e * * * * * cd /var/www/html/plaatonline; php online.php ### Step 6. Go to http://[raspberry-ip]/plaatonline ### Step 7. Installation is now ready done
If there are any questions please sent an email to info@plaatsoft.nl