在Ubuntu上安装LAMP服务器

Posted work hard work smart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Ubuntu上安装LAMP服务器相关的知识,希望对你有一定的参考价值。

1.安装Ubuntu上安装LAMP

apt-get install lamp-server^

2.安装过程中设置mysql密码

3.测试 创建index.php

var/www/html/index.php

index.php的内容为

<?php phpinfo(); ?>

重启apache,

service apache2 restart

在浏览器中输入

http://localhost/index.php

或者localhost改为IP地址

5配置MYSql

cat /etc/hosts | grep localhost

显示:127.0.0.1  localhost

cat /etc/mysql/my.cnf | grep bind-address

显示:bind-address = 127.0.0.1

 

6.  安装phpMyAdmin

apt-get install phpmyadmin

7. 配置Apache服务器

cp /etc/phpmyadmin/apache.conf /etc/apache2/conf-enabled/phpmyadmin.conf

然后重启apache

访问http://localhost/phpmyadmin页面

如果出现如下错误:

#2002 - The server is not responding (or the local MySQL server‘s socket is not correctly configured)

解决方法:

/etc/mysql/my.cnf

[client]
port            = 3306
socket          = /var/run/mysqld/mysqld.sock

 

以上是关于在Ubuntu上安装LAMP服务器的主要内容,如果未能解决你的问题,请参考以下文章

如何在Ubuntu上安装LAMP服务器系统

Ubuntu14.04麒麟版lamp安装+phpmyadmin

ubuntu下安装LAMP环境遇到的一些小问题

在Ubuntu 18.04上安装Apache, MySQL, PHP (LAMP)栈

LAMP的基本配置

在 Ubuntu ( Linux ) 上使用 Lamp 安装 Mongodb