BlueHost教程:Ubuntu 20.04安装LAMP环境
Ubuntu系统是大家在使用BlueHost服务器的时候经常会安装的系统之一,然而想要搭建网站的话,还需要安装WEB环境。这篇文章就带大家了解下BlueHost服务器Ubuntu 20.04安装LAMP环境详细过程,仅供大家参考。
一、安装Apache
安装并启动Apache,输入以下命令:
$ sudo apt install apache2 -y
$ sudo systemctl start apache2.service
开机启动Apache,命令如下:
$ sudo systemctl enable apache2.service
二、安装MariaDB数据库
安装MariaDB数据库,现在MariaDB基本已经替代MySQL数据库,命令如下:
$ sudo apt install mariadb-server mariadb-client -y
设置MariaDB开机启动,命令如下:
$ sudo systemctl enable mariadb.service
设置MariaDB数据库安全问题,命令如下:
$ sudo mysql_secure_installation
一开始,root用户是没有MariaDB数据库密码的,所以直接按“Enter”键进入即可:
Enter current password for root (enter for none):
进入数据库后需要设置新密码,按“Enter”键,如下:
Set root password? [Y/n]
输入并确认MariaDB数据库密码:
New password: #输入数据库密码
Re-enter new password: #确认数据库密码
Password updated successfully!
按“Enter”键,若要删除匿名用户登录,请执行以下操作:
Remove anonymous users? [Y/n]
按“Enter”键,若要不允许远程root登录,请执行以下操作:
Disallow root login remotely? [Y/n]
按“Enter”键,若要删除测试数据库,请执行以下操作:
Remove test database and access to it? [Y/n]
按“Enter”键,若要重新加载privilege tables,请执行以下操作。
Reload privilege tables now? [Y/n]
这就完成了MariaDB数据库基本的安全设置。
三、安装PHP环境
安装基本的PHP环境包和扩展组件,命令如下:
$ sudo apt install php php-{bcmath,bz2,intl,gd,mbstring,mysql,zip,fpm} -y
重新启动Apache以加载PHP,命令如下;
$ sudo systemctl restart apache2.service
四、完成测试
若要验证Apache是否已经完成安装并运行,只需在浏览器中输入服务器的IP地址,如果能看到Apache 2默认的测试页面,那么就代表已经安装完成。
如果测试PHP,root用户登录,执行以下操作来创建phpinfo页面:
# echo ‘<?php phpinfo(); ?>’ > /var/www/html/info.php
想要验证PHP是否有效,只需在浏览器输入查看:
http://服务器IP地址/info.php测试数据库