乐鱼体育官网最新版

如何在Ubuntu乐鱼全站app下载上安装Apache、PHP和MySQL?

  • 发布时间:2020-03-11 07:53:43
  • 阅读次数:1006

在这篇文章里,我们将学会如何在Ubuntu乐鱼全站app下载上安装LAMP环境,也就是Apache、PHP和MySQL。我们使用的Ubuntu版本是Ubuntu 18.04,这里的安装方法也适用于其他Ubuntu版本。整个安装过程分为下面几个步骤。

更新操作系统

在安装之前,我们更新操作系统到最新版本,并重启乐鱼全站app下载。

sudo apt update -y
sudo apt upgrade -y
reboot

安装Apache

通过以下命令安装Apache:

sudo apt-get install apache2 -y

通过以下命令查看Apache的版本:

apache2 -v

显示结果如下:

Server version: Apache/2.4.29 (Ubuntu)
Server built:   2019-12-03T15:55:03

还需要设置Apache跟随系统启动:

sudo systemctl enable apache2.service

如果我们在浏览器上访问乐鱼全站app下载的IP地址 ,出现Apache的默认页面,就说明Apache已经安装成功了。

安装PHP

通过以下命令安装PHP:

sudo apt-get install php -y

接下来,安装必要的PHP扩展:

sudo apt-get install php-{bcmath,bz2,intl,gd,mbstring,mysql,fpm} -y

通过以下命令查看PHP的版本:

php -v

显示结果如下:

PHP 7.2.24-0ubuntu0.18.04.3 (cli) (built: Feb 11 2020 15:55:52) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.2.24-0ubuntu0.18.04.3, Copyright (c) 1999-2018, by Zend Technologies

通过以下命令查看PHP安装的模块:

php -m

显示结果如下:

[PHP Modules]
bcmath
bz2
calendar
Core
ctype
date
exif
fileinfo
filter
ftp
gd
gettext
hash
iconv
intl
json
libxml
mbstring
mysqli
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
Phar
posix
readline
Reflection
session
shmop
sockets
sodium
SPL
standard
sysvmsg
sysvsem
sysvshm
tokenizer
Zend OPcache
zip
zlib

[Zend Modules]
Zend OPcache

安装MySQL

通过以下命令安装MySQL:

sudo apt-get install mysql-server -y

通过以下命令查看MySQL的版本:

mysql -V

显示结果如下:

mysql  Ver 14.14 Distrib 5.7.29, for Linux (x86_64) using  EditLine wrapper

然后,运行MySQL安装配置向导:

sudo mysql_secure_installation

在MySQL安装配置向导中,我们需要输入root密码,并回答一些安全性相关的问题,通常只需要选择向导提供的默认值即可。

Securing the MySQL server deployment.
Connecting to MySQL using a blank 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: Y
There are three levels of password validation policy:
LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary file
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2
Please set the password for root here.
New password:
Re-enter new password:
Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y
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!

还需要设置MySQL跟随系统启动:

sudo systemctl enable mysql.service

设置UFW

默认情况下,Ubuntu的防火墙UFW是禁用状态的。我们需要启用UFW,并允许SSH和Apache相关端口的访问。

sudo ufw allow OpenSSH
sudo ufw allow in "Apache Full"
sudo ufw enable

以上就是在Ubuntu乐鱼全站app下载中安装Apache、PHP和MySQL的帮助教程。

【全文完】

< 上一篇:10个管理Windows乐鱼全站app下载的常用PowerShell命令 下一篇:如何在CentOS 6乐鱼全站app下载上安装Apache、PHP和MySQL? >