阿里云ESC报错‘No match for argument: mod_auth-mysql,Error: Unable to find a match: mod_auth-mysql’

近来,根据阿里云快速搭建网站的教程去操作,在部署环境时执行‘ yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql’报错,错误如下:

[root@iZ0jlefpaeqcxkwjw3gw21Z ~]# yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql
Last metadata expiration check: 2:19:13 ago on Fri 24 Dec 2021 08:02:11 AM CST.
No match for argument: mod_auth_mysql
Error: Unable to find a match: mod_auth_mysql

解决办法:

1.  yum -y install httpd httpd-manual mod_ssl mod_perl

2.  yum -y install httpd httpd-devel

执行完上述代码即可成功安装Apache及其扩展包。

可以执行 httpd -v进行检验,若返回版本号即为安装成功,如下:

[root@iZ0jlefpaeqcxkwjw3gw21Z ~]# httpd -v
Server version: Apache/2.4.37 ()
Server built:   Oct 13 2021 17:03:20

你可能感兴趣的:(mysql,阿里云,数据库)