Logo 
Search:

Unix / Linux / Ubuntu Forum

Ask Question   UnAnswered
Home » Forum » Unix / Linux / Ubuntu       RSS Feeds

install phpsysinfo from Synaptic

  Date: Dec 05    Category: Unix / Linux / Ubuntu    Views: 330
  

Im just passing along something I like.

I saw a post in Ubuntu List about phpsysinfo.

From the site: phpSysInfo is a PHP script that displays information
about the host being accessed.
It will displays things like Uptime, CPU, Memory, SCSI, IDE, PCI,
Ethernet, Floppy, and Video Information

Its a quick and easy way to keep track of servers running else where.

Im installing it right now on several servers I manage remotely.

Share: 

 

3 Answers Found

 
Answer #1    Answered On: Dec 05    

Just to add a little information: you can install phpsysinfo from
Synaptic, etc. Once installed, assuming you are running Apache and PHP, you can
invoke it by pointing your browser at localhost/phpsysinfo

 
Answer #2    Answered On: Dec 05    

I installed via Synaptic. I think it is really cool.
Friend of mine said there are other programs out there
that do the same thing, and there are, but this is so
easy to install and use. I just added the link to the
program in a secured directory that I assess on the
server and now, all that information is there.

I think people forget that with linux there is ALWAYS
more than one way to do something. But this is simple
and easy to use.

 
Answer #3    Answered On: Dec 05    

When setting up a server phpinfo() is used to determine all is working.
a simple script is made to access this function:

<?php
phpinfo();
?>

saved as phpinfo.php to the server web root.

To troubleshoot the Mysql data base:

<?php
echo mysql_connect ('localhost','username','password');
?>

normally saved as mysql_test.php will test the mysql server connection
and passwords...

These scripts are considered a large security risk on servers, and
should be removed or renamed to a name a hacker would not consider to
hold such a powerful script. Information about your server can lead to a
hackers missuse of your system. Don't install any php script that can
give your information away on a public server. If you must have the
info, name your scripts wisely.

 
Didn't find what you were looking for? Find more on install phpsysinfo from Synaptic Or get search suggestion and latest updates.




Tagged: