# - bof - # # :1 # - - # # - Documentation - # https://www.howtoforge.com/tutorial/ubuntu-postgresql-installation/ # :2 # - - # # - Install phpPgAdmin - # sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y; sudo apt install phppgadmin php-pgsql -y; sudo apt install php libapache2-mod-php -y; # :3 # - - # # - Configure phppgamin.conf & config.inic.php - # # :3.1 # - - # # - Open phppgadmin.conf - # sudo vim /etc/apache2/conf-available/phppgadmin.conf; # - Look for 'Require local' & Add 'Allow From all' - # #Require local Allow From all # :3.2 # - - # # - Open config.inic.php - # sudo vim /etc/phppgadmin/config.inc.php; # - Look for "$conf['extra_login_security'] = true;" - # $conf['extra_login_security'] = false; # :4 # - - # # - Restart PostgreSQL & Apache2 - # sudo systemctl restart postgresql apache2; # :5 # - - # # - Testing: Access phpPgAdmin - # http://yourip/phppgadmin 192.168.0.100/phppgadmin 192.168.1.100/phppgadmin 192.168.1.200/phppgadmin 192.168.122.100/phppgadmin # - eof - #