انت تستخدم اخر اصدار شكرا لك

  • More
  • أخر التعليقات

    Install php, Apache2, mysql, php my admin Ubuntu

     Before continuing below, please make sure you’ve installed MySQL database server.. To to install it, run the commands below..

    sudo apt-get update
    sudo apt-get install mysql-server mysql-client

    Step 1: Install and Configure Apache2

    First, run the commands below to install Apache2.

    sudo apt-get install apache2

    Step 2: Configure Apache2

    Next, run the commands below to configure Apache2 basic settings. These are the basics.. and more advanced configurations can be done later.

    Change your Apache2 server token to Prod

    sudo nano /etc/apache2/conf-enabled/security.conf

    Change the highlighted line below and save the file.

    # Set to one of:  Full | OS | Minimal | Minor | Major | Prod
    # where Full conveys the most information, and Prod the least.
    #ServerTokens Minimal
    ServerTokens Prod
    #ServerTokens Full
    

    Next, configure the default DirectoryIndex directives.

    sudo nano /etc/apache2/mods-enabled/dir.conf

    Then change the highlighted line below and save.

    <IfModule mod_dir.c>
    DirectoryIndex index.html index.htm index.php
    </IfModule>
    

    Next, configure your domain or server name

    sudo nano /etc/apache2/sites-enabled/000-default.conf

    Change the highlighted lines and save the file.

     <VirtualHost *:80>
         ServerAdmin admin@mylab.com
         DocumentRoot /var/www/html/
         ServerName mylab.com
         ServerAlias www.mylab.com
    
         ErrorLog ${APACHE_LOG_DIR}/error.log
         CustomLog ${APACHE_LOG_DIR}/access.log combined
    </VirtualHost>

    After that restart Apache2.

    sudo systemctl restart apache2

    Step 3: Install PHP

    Run the commands below to install PHP scripts.

    sudo apt-get install php php-cgi libapache2-mod-php php-common php-pear php-mbstring

    Step 4: Configure Apache2 to Use PHP

    After install PHP and other related scripts, run the commands below to enable Apache2 to use PHP.

    sudo a2enconf php7.1-cgi

    Reload Apache2

    sudo systemctl reload apache2

    Step 5: Install phpMyAdmin

    Now that Apache2 and PHP are installed the final step is to install phpMyAdmin and configure. To do that, run the commands below

    sudo apt-get install phpmyadmin php-gettext

    If you got an error like : 

    sudo apt install phpmyadmin php-mbstring php-gettext

    Reading state information... Done
    E: Unable to locate package phpmyadmin

    E: Unable to locate package php-mbstring

    Reading package lists... Done
    Building dependency tree

    E: Unable to locate package php-gettext
     Just do this :
    sudo add-apt-repository universe
    sudo apt install phpmyadmin


    Then let's continue:

    When prompted to choose the webserver, selecat apache2 and continue.

    +------------------------+ Configuring phpmyadmin +-------------------------+
     | Please choose the web server that should be automatically configured to   |
     | run phpMyAdmin.                                                           |
     |                                                                           |
     | Web server to reconfigure automatically:                                  |
     |                                                                           |
     |    [*] apache2                                                            |
     |    [ ] lighttpd                                                           |
     |                                                                           |
     |                                                                           |
     |                                 <ok>                                      |
     |                                                                           |
     +---------------------------------------------------------------------------+
    

    When prompted again to allow debconfig-common to install a database and configure select No.

     +------------------------+ Configuring phpmyadmin +-------------------------+
     |                                                                           |
     | The phpmyadmin package must have a database installed and configured      |
     | before it can be used.  This can be optionally handled with               |
     | dbconfig-common.                                                          |
     |                                                                           |
     | If you are an advanced database administrator and know that you want to   |
     | perform this configuration manually, or if your database has already      |
     | been installed and configured, you should refuse this option.  Details    |
     | on what needs to be done should most likely be provided in                |
     | /usr/share/doc/phpmyadmin.                                                |
     |                                                                           |
     | Otherwise, you should probably choose this option.                        |
     |                                                                           |
     | Configure database for phpmyadmin with dbconfig-common?                   |
     |                                                                           |
     |                  <Yes>                   <No>                             |
     |                                                                           |
     +---------------------------------------------------------------------------+
    

    After installing, run the commands below to logon to the database server to enable phpMyAdmin root logon.

    Now, open your web browser and login to the server hostname or IP address followed by phpmyadmin

    ex. http://example.com/phpmyadmin

    phpmyadmin logon page on ubuntu

    Logon with MySQL root account you created earlier when you installed the database server.

    That’s it!

     

    No comments :

    Post a Comment