Вы находитесь на странице: 1из 29

Ubuntu 16.

04 LTS LAMP server tutorial with


Apache 2.4, PHP 7 and MySQL

Scan your Web-Server for Malware with ISPProtect now. Get Free Trial.

This tutorial exists for these OS versions

Ubuntu 16.04 (Xenial Xerus)


Ubuntu 15.10 (Wily Werewolf)
Ubuntu 15.04 (Vivid Vervet)
Ubuntu 14.10 (Utopic Unicorn)
Ubuntu 14.04 LTS (Trusty Tahr)
Ubuntu 13.10 (Saucy Salamander)
On this page

Preliminary Note
1. Installing MySQL or MariaDB
1.1 Install MySQL 5.7
1.2 Install MariaDB 10
2. Install Apache 2.4
3. Install PHP 7
4. Test PHP and get details about your PHP installation
5. Get MySQL / MariaDB support in PHP
6. Install the Opcache + APCu PHP cache to speed up PHP
7. Enable the SSL website in apache
8. Get a free SSL Certificate from Let's Encrypt
8.1 Let's encrypt Auto Renewal
9. Install phpMyAdmin
9.1 Root access to PHPMyAdmin with MariaDB
10 Virtual machine image download of this tutorial
11 Links
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache web
server on an Ubuntu 16.04 LTS (Xenial Xerus) server with PHP 7 (mod_php) and MySQL / MariaDB support
and how to setup an SSL certificate with Let's encrypt. Additionally, I will install PHPMyAdmin to make
MySQL administration easier. A LAMP setup is a perfect basis for CMS systems like Joomla, Wordpress or
Drupal.

Preliminary Note
In this tutorial, I will use the hostname server1.example.com with the IP address 192.168.1.100.
These settings might differ for you, so you have to replace them where appropriate.
I recommend to use a minimal Ubuntu server setup as basis for the tutorial, that can be a virtual- or root
server image with an Ubuntu 16.04 minimal install from a web hosting company or you use our minimal
server tutorial to install a server from scratch.
I'm running all the steps in this tutorial with root privileges, so make sure you're logged in as root:

sudo su

1. Installing MySQL or MariaDB


There are currently two widely used MySQL database systems available, the classic "MySQL" server which is
developed by Oracle and is available in version 5.7 now and the MySQL fork named MariaDB which is
developed by the original MySQL developer Monty Widenius.
I will show you how to install both alternatives below. Just follow either chapter 1.1 or 1.2 but not both. I
will use MySQL 5.7 for the virtual machine image that can be downloaded from Howtoforge.
1.1 Install MySQL 5.7

To install MySQL 5.7, execute this command:

apt-get -y install mysql-server mysql-client

The packages mysql-server and mysql-client are so called 'meta-packages', they install always the latest
MySQL version that is available from Ubuntu. Th latest version is currently MySQL 5.7.
We have set the root password for MySQL already during installation, but I would like to remove the
anonymous user and test database for security reasons. Run the mysql_secure_installation command below
to achieve that.

mysql_secure_installation

You will be asked these questions:


Securing the MySQL server deployment.
Enter password for user root: <-- Enter the MySQL root password
VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?
Press y|Y for Yes, any other key for No:
Using existing password for root.
Change the password for root ? ((Press y|Y for Yes, any other key for No) : <--
Choose 'y' here if you like to enable the password validation, I don't need that function, so I
choose 'n' here.
... skipping.
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.
Remove anonymous users? (Press y|Y for Yes, any other key for No) : <-- y
Success.

Normally, root should only be allowed to connect from


'localhost'. This ensures that someone cannot guess at
the root password from the network.
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : <-- y
Success.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for
No) : <-- y
- Dropping test database...
Success.
- Removing privileges on test database...
Success.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : <-- y
Success.
All done!
The MySQL setup has been secured now.
1.2 Install MariaDB 10

Run the following command to install MariaDB-server and client:

apt-get -y install mariadb-server mariadb-client

Now we set a root password for MariaDB.

mysql_secure_installation

You will be asked these questions:


Enter current password for root (enter for none): <-- press enter
Set root password? [Y/n] <-- y
New password: <-- Enter the new MariaDB root password here
Re-enter new password: <-- Repeat the password
Remove anonymous users? [Y/n] <-- y
Disallow root login remotely? [Y/n] <-- y
Reload privilege tables now? [Y/n] <-- y
Test the login to MariaDB with the "mysql command"

mysql -u root -p

and enter the MariaDB root password that you've set above. The result should be similar to the screenshot
below:

To leave the MariaDB shell, enter the command "quit" and press enter.
2. Install Apache 2.4
Apache 2 is available as an Ubuntu package, therefore we can install it like this:

apt-get -y install apache2

Now direct your browser to http://192.168.1.100, and you should see the Apache2 default page (It
works!):

The document root of the apache default vhost is /var/www/html on Ubuntu and the main configuration
file is /etc/apache2/apache2.conf. The configuration system is fully documented
in /usr/share/doc/apache2/README.Debian.gz.

3. Install PHP 7
We can install PHP 7 and the Apache PHP module as follows:

apt-get -y install php7.0 libapache2-mod-php7.0

Then restart Apache:

systemctl restart apache2

4. Test PHP and get details about your PHP installation


The document root of the default web site is /var/www/html. We will now create a small PHP file
(info.php) in that directory and call it in a browser. The file will display lots of useful details about our
PHP installation, such as the installed PHP version.
nano /var/www/html/info.php

<?php
phpinfo();
?>

Then change the owner of the info.php file to the www-data user and group.

chown www-data:www-data /var/www/html/info.php

Now we call that file in a browser (e.g. http://192.168.1.100/info.php):

As you see, PHP 7.0 is working, and it's working through the Apache 2.0 Handler, as shown in
the Server API line. If you scroll further down, you will see all modules that are already enabled in PHP5.
MySQL is not listed there which means we don't have MySQL / MariaDB support in PHP yet.

5. Get MySQL / MariaDB support in PHP


To get MySQL support in PHP, we can install the php7.0-mysql package. It's a good idea to install some
other PHP modules as well as you might need them for your applications. You can search for available PHP
modules like this:

apt-cache search php7.0

Pick the ones you need and install them like this:
apt-get -y install php7.0-mysql php7.0-curl php7.0-gd php7.0-intl php-pear php-imagick
php7.0-imap php7.0-mcrypt php-memcache php7.0-pspell php7.0-recode php7.0-sqlite3 php7.0-
tidy php7.0-xmlrpc php7.0-xsl php7.0-mbstring php-gettext

Now restart Apache2:

systemctl restart apache2

PHP 7 has now MySQL / MariaDB support as shown in phpinfo() above.


6. Install the Opcache + APCu PHP cache to speed up PHP
PHP 7 ships with a built-in opcode cacher for caching and optimizing PHP intermediate code, it has the
name 'opcache' and is available in the package php7.0-opcache. It is strongly recommended to have an
Opcache installed to speed up your PHP page. Besides opcache, I will install APCu which is a compatibility
wrapper for opcache to provide the functions of the APC cache, an often used caching system in php 5.x
versions and many CMS systems still use it.
Opcache and APCu can be installed as follows:

apt-get -y install php7.0-opcache php-apcu

Don't worry if it shows that Opcache is already installed.


Now restart Apache:

systemctl restart apache2

Now reload http://192.168.1.100/info.php in your browser and scroll down to the modules section
again. You should now find lots of new modules there:
Please don't forget to delete the info.php file when you don't need it anymore as it provides sensitive details
of your server. Run the following command to delete the file.

rm -f /var/www/html/info.php

7. Enable the SSL website in apache


SSL/ TLS is a security layer to encrypt the connection between the web browser and your server. Most web
browsers start to show sites as insecure today when the connection between the server and the web
browser is not encrypted with SSL. In this chapter, I will show you how to secure your website with SSL.
Execute the following commands on your server to enable SSL (https://) support. Run:

a2enmod ssl
a2ensite default-ssl

which enables the SSL module and adds a symlink in the /etc/apache2/sites-enabled folder to the
file /etc/apache2/sites-available/default-ssl.conf to include it into the active apache configuration. Then
restart apache to enable the new configuration:

systemctl restart apache2

Now test the SSL connection by opening https://192.168.1.100 in a web browser.


You will receive an SSL warning as the SSL certificate of the server is a "self-signed" SSL certificate, this
means that the browser does not trust this certificate by default and you have to accept the security
warning first. After accepting the warning, you will see the apache default page.

The closed "Green Lock" in front of the URL in the browser shows that the connection is encrypted.
There are two ways to get rid of the SSL warning, either replace the self-signed SSL
certificate /etc/ssl/certs/ssl-cert-snakeoil.pem with an officially signed SSL certificate that you buy from an
SSL Authority or you get a free SSL certificate from Let's encrypt, which I will describe in chapter 8.
8. Get a free SSL Certificate from Let's Encrypt
The first step to secure the website with a Let's Encrypt SSL Certificate is to install the python-letsencrypt-
apache package. Run the following command:

apt-get -y install python-letsencrypt-apache

In the next step, we will request an SSL cert from Let's Encrypt, during this process, the Let's Encrypt
server tries to connect to your server trough the domain name that you provide to the letsencrypt
command. It is important that this domain name points to your server in DNS already so that the website is
reachable by its domain name on port 80 (http) already. If the website is not reachable from the internet,
then the creation of the Let's Encrypt SSL certificate will fail.
Before we can start to create the SSL cert, set the domain name in the vhost configuration file. Open the
default vhost file with an editor:

nano /etc/apache2/sites-available/000-default.conf

and add the line:

ServerName example.com

Right below the 'DocumentRoot' line. Replace example.com with the domain name of your own website.
Then create the SSL Certificate with this command:

letsencrypt --apache -d example.com

Replace example.com with your domain name here again. The command will start a wizard that asks you
several questions.
Enter the email address where the administrator who is responsible for this website can be reached.

Accept the terms and conditions of the Let's Encrypt SSL authority.
Choose if you want to redirect non-SSL requests to https:// automatically. I'll select yes here to avoid
duplicate content problems when the website is available as http:// and https:// version.

The SSL certificate has been issued successfully.

When you access the website now with a browser, you will get redirected automatically to SSL and the
green lock in front of the URL bar in the browser shows that we are using a trusted SSL certificate now.
8.1 Let's encrypt Auto Renewal

Let's Encrypt SSL certificates are valid for a short period of 80 days only. Therefore we will setup a cronjob
now to auto-renew the SSL certificate when necessary. The command is 'letsencrypt renew'.
Setup a cronjob for LE auto renewal. Run:

crontab -e

to open the root crontab in an editor. Insert the following line at the end of the file:

0 1 * * * /usr/bin/letsencrypt renew &> /dev/null

save the file, this will activate the cronjob. This cronjob will call the Let's Encrypt renew command every
night at 1 am. The command will renew the SSL cert only when necessary (30 days before it expires), there
is no problem to run it every night.
9. Install phpMyAdmin
phpMyAdmin is a web interface through which you can manage your MySQL databases. It's a good idea to
install it:

apt-get -y install phpmyadmin

You will see the following questions:


Web server to configure automatically: <-- Select the option: apache2
Configure database for phpmyadmin with dbconfig-common? <-- Yes
MySQL application password for phpmyadmin: <-- Press enter, apt will create a random
password automatically.
9.1 Root access to PHPMyAdmin with MariaDB

The following step is required for MariaDB installations only, if you use MySQL 5.7, then skip this step.
MariaDB enables a plugin called "unix_socket" for the root user by default, this plugin prevents that the root
user can log into PHPMyAdmin and that TCP connections to MySQL are working for the root user. To get a
user with privileges to create other users and databases in PHPMyAdmin, I will create a new MySQL user
with the name "admin" with the same privileges than the root user.
Login to the MySQL database as root user on the shell:

mysql -u root

Create a new user with the name "admin" and password "howtoforge". Replace the password "howtoforge"
with a secure password in the commands below!

CREATE USER 'admin'@'localhost' IDENTIFIED BY 'howtoforge';


GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit

Afterward, you can access phpMyAdmin under http://192.168.1.100/phpmyadmin/:


10 Virtual machine image download of this tutorial
This tutorial is available as ready to use virtual machine image in ovf/ova format that is compatible with
VMWare and Virtualbox. The virtual machine image uses the following login details:
SSH / Shell Login
Username: administrator
Password: howtoforge
This user has sudo rights.
MySQL Login
Username: root
Password: howtoforge
The IP of the VM is 192.168.1.100, it can be changed in the file /etc/network/interfaces. Please change all
the above passwords to secure the virtual machine.
11 Links
Apache: http://httpd.apache.org/
PHP: http://www.php.net/
MySQL: http://www.mysql.com/
MariaDB: https://mariadb.com/
Ubuntu: http://www.ubuntu.com/
phpMyAdmin: http://www.phpmyadmin.net/
view as pdf | print
Share this page:

Suggested articles
131 Comment(s)
Add comment
Name *
Email *
p

Comments

From: GainS at: 2016-05-03 02:32:15


Reply
Thank you so much. Works perfectly.

From: J at: 2016-05-03 16:40:35


Reply
Nice work, complete and worked perfectly first time.

From: Jeff Beam at: 2016-05-04 13:25:12


Reply
excellent work thanks

From: Allen at: 2016-05-06 06:38:32


Reply
WWWonderfuull!!!! :-)

From: christ noel at: 2016-05-06 22:09:40


Reply
hello thanks for your tuto its works without problems thanks for the time spent by writting it its help
someone like me

From: Tuan Anh Ha at: 2016-05-08 10:57:55


Reply
Thank you very much! Vielen Dank fr Ihre Hilfe!

From: J.L. Barbry at: 2016-05-09 09:51:18


Reply
Thank you to you for this tutorial which is very easy to use.Unfortunately, I get an error in the last step,
after the installation of phpMyAdmin:The requested URL /phpmyadmin/ was not found on this server.
The same error with 127.0.1/phpmyadmin or localhost/phpmyadmin.
I tried 3 times to uninstall and reinstall without success.Pity that Ubuntu does not offer a LAMP package !
Best regards

From: till at: 2016-05-15 08:33:22


Reply
Try to run:

dpkg-reconfigure phpmyadmin

and ensure that you select apache2 as config option. If no webserver config option is selected during
phpmyadmin installation, then the alias to accessphpmyadmin does not get added to the apache config.

From: Gareth at: 2016-05-21 15:39:23


Reply
Hi
You probably missed the fact that you need to put a mark in the selection of apache2 in the config. It
definitely looks like it's selected it when the red box is in the selection thing, but unless you press space it
won't mark it as selected and it won't configure it it for apache. Hope that makes sense?!
Cheers
Gareth

From: Sanros at: 2017-07-31 00:37:15


Reply
Hi this work's for me,
sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf-enabled/phpmyadmin.conf

the solution comes from here: https://www.digitalocean.com/community/questions/i-cannot-access-


phpmyadmin-on-ubuntu-14-04

From: Bob W at: 2016-05-13 15:06:13


Reply
Followed the instructions with 16_04 and everything worked great up to phpMyAdmin.
I get the message:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using ? password: NO)
Uninstalled and tried again.
Still at a loss????
Other Ubuntu forum posts were for password: YES.
What should I check to solve this?

From: Daniel Whitney at: 2016-07-29 13:19:38


Reply
I encountered the same issue, did you find a solution?

From: Adjustinthings at: 2016-08-09 09:30:02


Reply
Also having this issue!

From: sruj at: 2016-09-05 16:02:50


Reply
try this http://askubuntu.com/a/763359

From: abhijeet at: 2016-09-13 04:06:39


Reply
Use this
dpkg-reconfigure phpmyadmin
This is used for reconfiguring phpmyadmin, while reconfiguring it will ask you for a username and
password. This will be used for logging in.

From: Ness at: 2017-03-23 18:18:38


Reply
This Works for me, only in the reconfigure question :
Configure database for phpmyadmin with dbconfig-common? <-- No
And it Phpmyadmin works with the MariaDB user and password.
From: Seb at: 2016-11-28 02:34:27
Reply
Try this. Fixed my issue in Ubuntu 16.10
http://askubuntu.com/questions/387062/how-to-solve-the-phpmyadmin-not-found-issue-after-upgrading-
php-and-apache

From: DSmidge at: 2016-05-14 21:05:12


Reply
Installing APCu is not necessary.
As it states on http://php.net/manual/en/intro.apcu.php: "APCu is APC stripped of opcode caching."

From: till at: 2016-05-15 08:16:41


Reply
And that's exactly why we install APCu. For Opcode caching, we have already "Opcache" installed. But many
software relies on the APC specific caching functions e.g. as a page cache and that's why we install APCu on
top of Opcache, it adds the APC functions to PHP when Opcache is installed.

From: Simon Zalar at: 2016-10-13 07:06:08


Reply
But in the article you wrote: "APCu is a free PHP opcode cacher for caching and optimizing PHP
intermediate code. It is strongly recommended to have an Opcache installed to speed up your PHP page."
Which IMHO is not true.

From: till at: 2016-10-13 07:50:43


Reply
Did you ever benchmark PHP without an opcode cache (and yes, the Opcache extension in PHP 7 is also an
opcode cache, so disable it when you want to test without an opcache) with a PHP version that runs an
Opcode cache? And if yes, did you do that in real life scenarios like a WordPress website with caching
plugins enabled? I did that for different PHP versions and that's why I recommend to install it. But you don't
have to believe me of course, leave it out, your server will work without it. As a side note, many caching
plugins in websites recognize APC and use its specific functions as internal cache, APCu emulates this for
newer PHP versions, so just installing opcache without APCu will not make these options available for your
site.

From: Simon Zalar at: 2016-12-28 11:25:06


Reply
I think we all agree that opcode caches are great. The thing DSmidge pointed out is: "APCu is APC stripped
of opcode caching." and I said that this page claims "APCu is a free PHP opcode cacher".

From: FranzS at: 2016-05-15 15:07:40


Reply
Thank you for the Tutorial! It is very awesome.
On Unbuntu 16.04 i get a failure message in /var/syslog if i take a closer look.
It seems that setting a secure password for root user will do create problems with mysqlcheck because the
password ist not updated in /etc/mysql/debian.cnf
For details see:
http://askubuntu.com/questions/772785/16-04-mariadb-error-in-syslog-mysqlcheck

From: Clark at: 2016-05-16 12:52:44


Reply
Thanks a lot spent hours trying to get my lamp running. I used mysql though :)

From: tom at: 2016-05-16 14:53:40


Reply
Thanks, this helped getting my new dev server up and running :)

From: steve at: 2016-05-17 01:16:47


Reply
I wonder if you can help. I have followed all you tutorial which is well presented. but I cannot access
phpmyadmin. I also did not know where to add the last line in you tutorial about unix_socket.
i have reinstalled the phpmyadmin and ensure apache2 is the server to use. i have checked and included
the following line to apache2.conf
Include /etc/phpmyadmin/apache.conf
but still no access. any help would be great thankyou

From: Dante Camacho at: 2016-05-18 18:48:18


Reply
Thank you so much for this pice of cake!

From: Stephanie at: 2016-05-20 01:22:31


Reply
Hi
I managed to install everything fine butwhen I tried to run info.php I got the following message:
Forbidden
You don't have permission to access / on this server.
Apache/2.4.18 (Ubuntu) Server at localhost Port 80 Here are the document root file
permissions:root@Satellite-C660:/var/www/html# ls -ltotal 16-rw-r--r-- 1 root root 11321 May 20
00:56 index.html-rw-r--r-- 1 www-data www-data 35 May 20 01:55 info.phproot@Satellite-
C660:/var/www/html#

From: Andriy at: 2016-05-23 22:44:53


Reply
Amazing! Thank you for this great tutorial.

From: stefano giacomini at: 2016-05-26 10:00:08


Reply
excellent work thanks!

From: Bibot at: 2016-06-06 06:41:51


Reply
It says "ERROR 1046(3D000) at line 1: No database selected"

From: otis at: 2016-06-07 07:47:50


Reply
Not Found
The requested URL /phpmyadmin was not found on this server.
Apache/2.4.18 (Ubuntu) Server at localhost Port 80 i have a problem to access on phpmyadmin i don't
know why, i've followed perfectly this tuto, please could you help me?
From: till at: 2016-06-07 08:05:04
Reply
You missed to enable phpmyadmin for apache (as described in the tutorail). You can redo the step by
running:

dpkg-reconfigure phpmyadmin

then ensure that apache 2 is selected, there must show a cross for the apache option which gets enabled
with the whitespace key of your keyboard. If no cross is shown there, then apache is not active for
phpmyadmin and you wont be able to reach it then!

From: Ed at: 2016-06-07 16:58:52


Reply
Hi,

Thanks, but Apache 2.4 is valuable with the event module enabled, and ISPConfig won't work with it - it
insists on using morker right? Can't you change this so we can use the much better event, please? Thanks

From: till at: 2016-06-08 07:45:27


Reply
ISPConfig does not depend on a specific apache mode, you just will not be able to use the mod_php mode
in ispconfig in worker mode.

From: Carlos Guena at: 2016-06-25 03:14:44


Reply
Thank you for this great tutorial! Everything works perfect but phpmyadmin. I got:
"Not FoundThe requested URL /phpmyadmin was not found on this server.Apache/2.4.18 (Ubuntu) Server
at 104.154.46.68 Port 80"
Could you help me? Any idea? Thanks.

From: Carlos Guena at: 2016-06-25 13:57:24


Reply
Solved "The requested URL /phpmyadmin/ was not found on this server." :
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin
sudo service apache2 restart

From: edmar at: 2016-06-26 01:10:52


Reply
Voc o melhor perfeito funcionando redondo.
Obrigado

From: Luis at: 2016-06-29 17:07:11


Reply
At last, thanks...

From: Rafael at: 2016-07-02 01:18:38


Reply
Muitissimo obrigado.
thx!!!

From: Wolfgang Bartsch at: 2016-07-05 19:37:59


Reply
Vielen Dank fr dieses Howto. Es hat mir sehr geholfen, da ich wirklich Probleme hatte phpmyadmin zum
laufen zu kriegen. Aber nun ist wieder alles so wie sein soll

Many thanks
wolfgang

From: Wolfgang Bartsch at: 2016-07-05 19:41:01


Reply
Thank you this howto is perfect. I used it on Linux Mint 18
greets wolfgang

From: carlos moreno at: 2016-07-07 23:09:37


Reply

muchas gracias despus de estar buscando como un loco y no poder andar el phpmyadmin, parece ser que
por este mtodo no da problemas.

solo quedara para terminar tu tutorial agregar al final

/etc/apache2/apache2.conf agregando: Include /etc/phpmyadmin/apache.conf

para que funcione phpmyadmin

y nada mas. muy buen tutorial

From: Paul at: 2016-07-11 11:45:16


Reply
Excellent guide, thank you very much!
Just one remark, with a local install on Xubuntu the address 192.168.1.100 does not work, but
http://localhost does (and consequently localhost/info.php and localhost/phpmyadmin)
Suggestion: tell the user that the inlog name for the phpmyadmin page is root and the password is the one
for MariaDB. That was not clear to me at first sight, because we just installed several software packages!
Thanks again for your work,
Paul.

From: Jrarr at: 2016-08-16 16:04:21


Reply
Thanks for this comment Paul, it didn't work on 16.04 until I typed this. Just not sure how to interpret your
fix for this.

From: James at: 2016-07-12 05:08:21


Reply
Whole installation went fine except as others I had issues with the phpmyadmin install: The requested URL
/phpmyadmin/ was not found on this server.
It was the firewall with me the command to fix was sudo ufw allow in "Apache Full"

From: Sven at: 2016-07-14 11:54:30


Reply
Supppper!

From: Michael Cooper at: 2016-07-15 10:18:30


Reply
Hello Guys,
Everything works except the https: (SSL) not sure why I followed it to the letter, I will be
troubleshooting until I figure it out.

Thanks,

From: ladjailia at: 2016-07-26 12:37:58


Reply
Thanks

From: Mikiya at: 2016-07-28 05:59:31


Reply
Nice tutorial, thanks ^_^

From: AdminOnmint at: 2016-07-28 23:02:56


Reply
Thank you mate for this post.... I upgraded my system to Mint 18 and had some buggs. after reviewing
this post, it has solved the issue I had.

From: Larry Robinson at: 2016-07-29 15:46:05


Reply
I have followed your instruction, and rechecked all, but can not get any responce for info.php...All I get is a
blank page...I have the ports 80 and 443 open in firewalld...Hope you can help.

From: zcong at: 2016-08-02 02:25:09


Reply
thanks very mych , it makes work easily!!

From: Marco at: 2016-08-09 13:00:17


Reply
Impeccabile, installazione perfetta, semplice e funzionale
Grazie per il VS ottimo lavoro

From: Benedict Poppe at: 2016-08-10 09:12:35


Reply
Very nice article, works perfectly :)

From: Pablo Menezes at: 2016-08-23 12:42:19


Reply
Perfect Tutorial , Thanks!!!
From: DanielS at: 2016-08-26 06:05:06
Reply
Flawless Victory!

From: Ram at: 2016-08-27 02:32:53


Reply
Thanks so much. This has helped me a lot!

From: Lennon Castro at: 2016-08-30 15:01:16


Reply
It works fine!

From: William Vasquez at: 2016-08-31 01:39:33


Reply
Excelente post. todo funciona casi a la perfeccion, me gusto la colaboracion colocada, me falta hace
multiple dominios para diferentes hosting hay ire dandome golpes de pecho.!

From: cong nguyen at: 2016-09-01 14:16:49


Reply
wow. it's work ! thanks so much

From: Juan carlos at: 2016-09-02 13:38:35


Reply
muy valiosa la informacin, gracias por este aporte

From: vic at: 2016-09-11 11:42:24


Reply
Thank you!!

From: natzdc at: 2016-09-12 07:09:56


Reply
Tnx for a very detailed STEPS: just need help
: I got everything done, but I just got some few errors:
1. root@home:/home/hive# a2ensite dafault-ssl ERROR: Site dafault-ssl does not exist!
- https not working
2. "Connection for controluser as defined in your configuration failed."

From: Sidi4 at: 2016-09-12 11:03:13


Reply
This is really gtate tutorial - the that you can folow and it works.
Even I had an issues with phpmyadmin, but was able quicly to fix it with
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf sudo a2enconf
phpmyadmin.conf sudo service apache2 reload
If I may request to make a tutoreal or just explain (anyone) how to "Install PHP 7 with zts."
I'm really having a hard time to find any information about it.
I need ZTS for "pecl install pthreads".

From: Sidi4 at: 2016-09-15 18:40:37


Reply
This is really gtate tutorial - the that you can folow and it works.
Even I had an issues with phpmyadmin, but was able quicly to fix it with
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf sudo a2enconf
phpmyadmin.conf sudo service apache2 reload
If I may request to make a tutoreal or just explain (anyone) how to "Install PHP 7 with zts."
I'm really having a hard time to find any information about it.
I need ZTS for "pecl install pthreads".

From: Sidi4 at: 2016-09-17 15:54:41


Reply
This is really great tutorial - the that you can follow and it works.
Even I had an issue with phpmyadmin, but was able quickly to fix it with
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf sudo a2enconf
phpmyadmin.conf sudo service apache2 reload
If I may request to make a tutoreal or just explain (anyone) how to "Install PHP 7 with zts."
I'm really having a hard time to find any information about it.
I need ZTS for "pecl install pthreads".

From: shijin at: 2016-09-19 11:05:35


Reply
Wonderfull Document... helped me a lot....
Only one issue faced: phpmyadmin is not working after I installed it . I did following and its woked like a
charm!!!..
vi /etc/apache2/apache2.conf
Then add the following line to the end of the file.
Include /etc/phpmyadmin/apache.conf
Then restart apache
/etc/init.d/apache2 restart

From: erama at: 2016-09-19 12:36:24


Reply
It is possible add SpeedPage module to this configuration, and this is convenient?Thank you so much!.

From: kevin at: 2016-09-19 15:41:33


Reply
so where do i find the bind-address so I can let my remote server connect to the database? can this be
done in phpmyadmin?

From: peter at: 2016-09-22 10:29:16


Reply
Excellent tutorial. Did the install in less than 10 mins.
Danke
From: Per Lwgren at: 2016-09-23 00:04:52
Reply
Excellent! Thanks!

From: Gabor at: 2016-09-23 20:42:01


Reply
Thank you for your great article, helped me to a lot. Now I have a fast development computer.
In my case http://localhost worked instead of IP address, and I also get an 404 Error on phpmyadmin but
as Carlos Guena suggested, this three line of command solved the problem:
ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.confln -s
/usr/share/phpmyadmin /var/www/html/phpmyadminservice apache2 restart

From: Renato Leal at: 2016-09-27 23:42:22


Reply
Thanks! You are man!

From: netto at: 2016-10-03 02:39:45


Reply
OMG! Perfectly Documented! Thanks a lot!

From: Eric Wood at: 2016-10-08 05:01:21


Reply
I receive an error message when trying to access 192.168.0.230/php.info, the browser will not access the
page. What am I doing wrong?

From: Eric W at: 2016-10-08 07:26:00


Reply
I am having issues accessing php.info and the echo command involving disabling the unix_socket. It is
showing an issue with the word priviledges.

From: John Perczyk at: 2016-10-08 12:12:06


Reply
Absolutely perfect and just what I was looking for.
Much easier than most other websites that take you through convulted twists and turns to get this to work.

From: Eric W at: 2016-10-08 17:57:45


Reply
Still having issues with php.info but figured out unix_socket. Whenever I try to access phpmyadmin I get
nothing but a bunch of text. Why does it appear I'm getting code and not phpmyadmin?

From: Raimehn Roger at: 2016-10-10 06:29:20


Reply
It Works perfectly thanks..

From: Chato at: 2016-10-13 14:14:17


Reply
Excellent tutorial bro, It works!

From: Yudi Andela at: 2016-10-18 07:01:06


Reply
Thanks for this excellent article.
And it works very well

From: JuanGuillermo at: 2016-10-21 12:01:28


Reply
Thank you so much. Works perfectly....
Buen tutorial funciona perfectamente ... muchas gracias

From: GreyWolf at: 2016-10-22 00:33:35


Reply
Great tutorial, thank you. I did get stuck trying to log in to phpMyAdmin however the comment from till was
spot on. It might be worth editing the guide to ensure a password is entered and not randomly generated
or add a section for adding a mysql user to avoid being locked out of mysql completely.

From: charlie at: 2016-10-23 16:09:01


Reply
Thank you very much , awesome tutorial great job

From: DanB at: 2016-10-26 20:13:28


Reply
Just a not that these directions also work well on 16-10!

From: jay at: 2016-10-27 07:26:48


Reply
The title says that this tutorial is for 16.04 and not for Ubuntu 16.10. But I'm sure that howtoforge will post
a tutorial for 16.10 soon as usual. For servers it is better to use a LTS version like Ubuntu 16.04 anyway.

From: Kasalop at: 2016-10-30 19:20:55


Reply
Hi,
the new package names are:
php7.0-memcached instead of php-memcache (btw: the d is missing in the statement above)
php7.0-imagick instead of php-imagick

thanks for this very well tutorial!


regards, Kasalop

From: Jan at: 2016-11-01 13:36:21


Reply
Great tutorial, if someone would make a script for this, it would be amazing! And just a note about the last
part of the tutorial - phpmyadmin. If you cant reach the phpmyadmin after you've done all the steps, then
you should add Include /etc/phpmyadmin/apache.conf to the /etc/apache2/apache2.conf file and restart
the service.

From: John at: 2016-11-03 07:45:34


Reply
Thank you so much. Clearly explained.

From: Yon at: 2016-11-24 06:00:28


Reply
I had so many issues, untill I came accross this, worked flawlessly. Thank you for making the world a better
place!

From: avanerie at: 2016-11-24 13:00:53


Reply
I have followed your instructions, but after:
> Now we set a root password for MariaDB.

mysql_secure_installation

> You will be asked these questions:


> Enter current password for root (enter for none): <-- press enter
I can't set a root password. After pressing enter it says:
> Access denied for user 'root'@'localhost' (using password: NO)
So I can't make changes.
Can anyone help?

From: Jorge at: 2016-11-25 02:32:08


Reply
Thank you, all steps worked perfectly.

From: Yann Lehmann at: 2016-11-27 12:00:43


Reply
Thank you so much for this tutorial.
I have been using it on several servers, and it worked every time.

From: Alain Bex at: 2016-11-30 12:16:05


Reply
Great manual.
One of the few manuals where everything works as explained.And where the explanations is complete!
Fantastic job.
1 improvement : to lging in phpadmin : to use the username root

From: John (almostgem) at: 2016-12-04 09:28:05


Reply
Great tutorial. I too had the issue where phpmyadmin wasn't found, but going through the comments
helped me resolve. I swear it "looks" like apache2 is selected. Pressing the spacebar showed my what I was
missing. Thanks everyone, and once again, thanks for a great tutorial !

From: Ahmet at: 2016-12-04 17:04:23


Reply
Excellent!!!

From: Hector at: 2016-12-08 20:53:13


Reply
hi,
i'm work whith ubuntu server 16.10 and I have problems when I want to login to phpmyadmin I get that
the page was not found
what can i do?
please help

From: Dennis Holmes at: 2016-12-26 20:25:59


Reply
Great guide! Got everything set up in less than 10 mins. THANK YOU!

From: fryser at: 2016-12-31 08:10:23


Reply
In 10 years of bullshit, this is one of the most well written tutorial.
Good job bro!!

From: Chris G at: 2016-12-31 11:47:46


Reply
Probably not the best solution but it worked for me..
I removed the root password,
SET PASSWORD FOR root@localhost=PASSWORD('');
dpkg-reconfigure phpmyadmin
then reset the root password.

From: Manelma at: 2017-01-08 08:50:02


Reply
Execellent tutoriual!!!
Only is necessary to add the simbolic link from phpmyadmin to apache2
sudo /etc/init.d/apache2 reload

Thanks you

From: Thaalinda at: 2017-01-08 19:33:54


Reply
Thank you very much for this tutorial and some time we can't goto the phpmyadmin so have to create a
link
sudo ln -s /usr/share/phpmyadmin /var/www/html/

From: till at: 2017-01-09 08:08:29


Reply
I'll cite the comment from Gareth which explains what you did wrong during installation:

Hi
You probably missed the fact that you need to put a mark in the selection of apache2 in the config. It
definitely looks like it's selected it when the red box is in the selection thing, but unless you press space it
won't mark it as selected and it won't configure it it for apache. Hope that makes sense?!
Cheers
Gareth

From: Felix Schilling at: 2017-01-12 14:53:01


Reply
Such a nice job.
Thanks so much
Best tutorial i ever read

From: Drew at: 2017-01-17 17:04:10


Reply
Very clear and precise - terminal commands worked perfect
Hope loading Wordpress goes as smooth
Thank you

From: carlos at: 2017-01-31 11:36:54


Reply
Very useful!! Congra.! . I had a problem after installed phpmyadmin and I solved with the following
command: sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin

From: till at: 2017-01-31 11:50:39


Reply
This has been explained several times in the comments, you missed to enable the apache option during
PHPMyAdmin install when the PHPMyAdmin installer asked for which server the program shall be enabled
(as explained in the tutorial).

From: Stantoch at: 2017-02-05 13:20:12


Reply
Thanks Sidi4. You're a god among men. May your days be long.
Gracias

From: Ashlee at: 2017-02-05 17:21:55


Reply
Had an issue with 404 error trying to connect to phpmyadmin. Was fixed with a symlink:
ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin
after that it worked but I am not sure if this would be considered best practice or if there is a better way to
fix the issue.

From: Sydul Islam Mazumder at: 2017-02-08 19:31:54


Reply
Really you saved my day. Thanks mam. I love you. May Allah be with you. :)

From: Jeff Conno at: 2017-02-12 01:15:40


Reply
Hi, This is my first time using linux. when following your tutorial (which is great btw) I have noticed that
when you open up info.php for the first time you have a gui type interface. I am only getting a txt read out.
I have tried googling the issue but It must be something basic ive missed becuase I can't find anything
close to an answer. any help would be great. thanks

From: joaquim at: 2017-02-16 19:39:41


Reply
Thanks very much, it works great...

From: Jahaziel Ojeda at: 2017-02-18 03:49:53


Reply
Gracias por tu aporte, por los paquetes actualizados que manejas....espero publiques mas articulos sobre
linux...me fue de gran utilidad...thanks

From: Thomas at: 2017-02-22 12:43:34


Reply
Thanks, It works, thanks for sharing

From: Chuy at: 2017-03-06 16:54:10


Reply
Thanks, it works like a charm!

From: jim at: 2017-03-08 11:25:52


Reply
Thanks :)

From: Rootfuchs at: 2017-03-09 16:52:39


Reply
After installing phpmyadmin i get 404.Solution:$ nano /etc/apache2/apache2.conf and add this line:
Include /etc/phpmyadmin/apache.conf

From: Jan at: 2017-03-09 17:47:24


Reply
I must say - PERFECT, thanks a lot.

From: Jaba1a at: 2017-03-31 13:20:20


Reply
Hello very good description, thank you.
Is it possible to extend this description about to: How can use virtual hosts by using Lets Encrypt to set up
multiple web pages, such as Joomla and Wordpress on the same Webserver?
That would be great.
Thank You

From: argy at: 2017-04-16 17:34:08


Reply
It s a wonderful article for us that we are trying to start with ubuntu!

From: Erik at: 2017-04-19 12:50:10


Reply
Everything went well up to point 9.1
I can't get the root acces to work. And when I'm logged in phpmyadmin I've got no privileges to create a
DB.
Ideas anyone?

From: George at: 2017-04-29 19:00:22


Reply
Geat Job.Thanks so much.

From: Eduardo at: 2017-05-18 15:46:55


Reply
Excelente!!!
From: Matt at: 2017-06-21 01:08:11
Reply
Awesome tutuorial
Where can I get the virtual machine image of this?

From: till at: 2017-06-22 11:37:22


Reply
The download link is in the upper right menu.

From: freemoth at: 2017-07-10 17:19:17


Reply
Such a great tutorial. Thank you for such clear instructions!
I did have an issue accessing phpmyadmin but http://askubuntu.com/questions/387062/how-to-solve-the-
phpmyadmin-not-found-issue-after-upgrading-php-and-apache from comments fixed that.
Thanks again!

From: Ely at: 2017-07-20 15:03:57


Reply
Thank you! It works like a charm!

From: Remo at: 2017-09-03 20:47:52


Reply
Cool work....... everything works like a charme....
many thanks for your help

From: Matt at: 2017-09-05 00:56:13


Reply
This was a fantastic tutorial. Thank you for you time and effor it took to get this up!!!
My system is working fantastic now.

From: Anthony Britton at: 2017-09-12 03:08:04


Reply
Thank you

Вам также может понравиться