How to install GLPI (IT Asset Management) on ubuntu
Quickloss3
Update Server: apt update && apt upgrade -y
Install MariaDB: sudo apt install mariadb-server sudo mysql_secure_installation sudo mysql -u root -p CREATE DATABASE glpi; CREATE USER 'glpi'@'localhost' IDENTIFIED BY 'StrongDBPassword'; GRANT ALL PRIVILEGES ON glpi.* TO 'glpi'@'localhost'; FLUSH PRIVILEGES; EXIT;
Install PHP and Apache: sudo apt -y install php php-{curl,zip,bz2,gd,imagick,intl,apcu,memcache,imap,mysql,cas,ldap,tidy,pear,xmlrpc,pspell,mbstring,json,iconv,xml,gd,xsl} sudo apt -y install apache2 libapache2-mod-php nano /etc/php/*/apache2/php.ini update session.cookie_httponly = on
Install GLPI: sudo apt-get -y install wget curl VER=$(curl -s https://api.github.com/repos/glpi-project/glpi/releases/latest|grep tag_name|cut -d '"' -f 4) wget https://github.com/glpi-project/glpi/releases/download/$VER/glpi-$VER.tgz tar xvf glpi-$VER.tgz sudo mv glpi /var/www/html/ sudo chown -R www-data:www-data /var/www/html/
Access UI: Server_ip/glpi/install/install.php
glpi/glpi for the administrator account
tech/tech for the technician account
normal/normal for the normal account
post-only/postonly for the postonly account
25223025 Bytes