Posts

Showing posts from 2016

Setup (LAMP) Apache Web Server in Ubuntu 13.04+

Image
Update all repository and install all updates :~$ sudo apt-get update && sudo apt-get upgrade Install LAMP SERVER :~$ sudo apt-get install lamp-server^ select *apache create mysql password :~$ sudo service apache2 restart Server should now be accesible in your browser via http://yourip or http:// localhost Install PHPMyAdmin :~$  sudo apt-get install phpmyadmin for Ubuntu 16.04++ :~$  sudo apt-get install phpmyadmin php-mbstring php-gettext supply mysql password supply phpmyadmin user password For Ubuntu 9.10++ and Apache2, the corresponding setting is located in the file /etc/apache2/conf-available/phpmyadmin.conf which is a link to /etc/phpmyadmin/apache.conf . :~$ sudo nano /etc/apache2/conf-available/phpmyadmin.conf The file contains Alias /phpmyadmin /usr/share/phpmyadmin where the first /phpmyadmin should be changed to something different if one wants to avoid the unnec...