Install PHP5 + mysql + APACHE2 In DEBIAN

Source: Internet
Author: User
Install PHP5 + mysql + APACHE2 In DEBIAN-Linux Enterprise Application-Linux server application information. For details, refer to the following. According to the online Introduction:

1. apt-get install php5

Apt-get install apache2

Apt-get install mysql-server mysql-client

Apt-get install php5-mysql php5-curl php5-gd
Dpkg-l 'php5 -*'

Aptitude install libapache2-mod-php5 php5-mysql

2. Add/etc/apache2/httdpd. conf:

AddType application/x-httpd-php. php

AddType application/x-httpd-php-source. phps

3. ln-s/etc/apache2/mods-available/php5. */etc/apache2 // mods-enabled

4. apt-get install apache2-mpm-prefork

5./etc/init. d/apache2 restart

After installation, I found that the mysql password does not know how to leave it blank, so I had to manually set the mysql password .:

#/Etc/init. d/mysql stop
# Mysqld_safe -- user = mysql -- skip-grant-tables -- skip-networking &
# Mysql-u root mysql
Mysql> UPDATE user SET Password = PASSWORD ('newpassword') where USER = 'root ';
Mysql> flush privileges;
Mysql> quit
#/Etc/init. d/mysql restart

You can finally enter mysql
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.