SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
GLPI Asset Management
Requirements
web server
PHP 4 or higher
MySQL
Installation
mkdir -p /extra/src
cd /extra/src
Download the source tarball:
wget http://www.glpi-project.org/IMG/gz/glpi-0.70.1a.tar.gz
tar zxvf glpi-0.70.1a.tar.gz
Copy the uncompressed folder to your webserver. Ex:
mv glpi /usr/local/apache2/htdocs/glpi
chown -R nobody:nobody /usr/local/apache2/htdocs/glpi
Modify the permissions on a couple of the directories:
cd /usr/local/apache2/htdocs/glpi
chmod ugo+w files config
Create a MySQL database and user:
/usr/local/mysql/bin/mysqladmin -u <username> -p create <databasename>
Log into MySQL:
mysql -u <username> -p
Create a user and grant it the appropriate privileges for your database:
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Access the glpi install with your browser for the web-based installation:
http://<yourserver>/glpi
Once you've finished the web installation, modify the permissions on the main config file:
cd /usr/local/apache2/htdocs/glpi
chmod 400 config/config_db.php
- Log in to post comments