如何在AWS EC2上卸载PHP-PGSQL



我在卸载php-pgsql时会出现问题。它不能删除。

[root@ip-172-31-31-52 /]# yum list php-pgsql*
Loaded plugins: priorities, update-motd, upgrade-helper
Available Packages
php-pgsql.x86_64                   5.3.29-1.8.amzn1                    amzn-main
[root@ip-172-31-31-52 /]# yum remove php-pgsql*
Loaded plugins: priorities, update-motd, upgrade-helper
No Match for argument: php-pgsql*
No Packages marked for removal

当我检查包装时,可以使用该软件包,但Stil无法删除。请帮忙。谢谢

如果您查看列表命令的输出,则表明php-pgsql.x86_64可用,而不是在计算机上安装。这就是为什么当您点击删除命令时,它显示了 no packages marked for removal

为了支持我的答案,我曾尝试在ec2上运行您的两个命令,并且如果安装了包裹,则会删除该命令。

现在,如果在EC2上安装的插件并运行list命令,则显示已安装的软件包:

  [root@ip-xx-xxx-xx-xxx ec2-user]# yum list php-pgsql*
  Loaded plugins: priorities, update-motd, upgrade-helper
  Installed Packages -- this line shows it installed.
  php-pgsql.x86_64   

尝试删除命令以删除软件包:

[root@ip-xx-xxx-xx-xxx ec2-user]# yum remove php-pgsql* -y
Loaded plugins: priorities, update-motd, upgrade-helper
Resolving Dependencies
--> Running transaction check
---> Package php-pgsql.x86_64 0:5.3.29-1.8.amzn1 will be erased
--> Finished Dependency Resolution
Dependencies Resolved
=============================================================================================================================================================================================================================================
 Package                                                 Arch                                                 Version                                                         Repository                                                Size
=============================================================================================================================================================================================================================================
Removing:
 php-pgsql                                               x86_64                                               5.3.29-1.8.amzn1                                                @amzn-main                                               315 k
Transaction Summary
=============================================================================================================================================================================================================================================
Remove  1 Package
Installed size: 315 k
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Erasing    : php-pgsql-5.3.29-1.8.amzn1.x86_64                                                                                                                                                                                         1/1
  Verifying  : php-pgsql-5.3.29-1.8.amzn1.x86_64                                                                                                                                                                                         1/1
Removed:
  php-pgsql.x86_64 0:5.3.29-1.8.amzn1
Complete!

相关内容

  • 没有找到相关文章

最新更新