Posts

Showing posts from May, 2021

phpipam install

Image
1. apt update  2. apt upgrade 3. sudo apt -y install php php-{mysql,curl,gd,intl,pear,imap,memcache,pspell,tidy,xmlrpc,mbstring,gmp,json,xml,fpm,ldap}  4. apt-get install apache2 mariadb-server 5. apt-get install snmp-mibs-downloader 6. apt-get install  php-snmp 7. sudo mysql_secure_installation 8. mysql -u root -p 9.  GRANT ALL on phpipam.* to phpipam@localhost identified by 'strongpassword'; 10. systemctl start apache2          systemctl enable mariadb         systemctl enable apache2 11. sudo apt -y install git 12. sudo git clone --recursive https://github.com/phpipam/phpipam.git /var/www/phpipam         cd /var/www/phpipam          sudo git checkout 1.4        git submodule update --init --recursive        cp config.dist.php config.php        nano config.php    ...