0

I am unable to uninstall qpid from my centos VM. I have tried following::

-sudo yum erase qpid-cpp-server -sudo yum remove qpid-cpp-server

But Its not getting uninstall.

Reetesh Nigam
  • 133
  • 2
  • 2
  • 15

1 Answers1

2

The dash before 'sudo' may be preventing the command from being recognized.

Try:

sudo yum remove qpid-cpp-server qpid-tools
  • Erik I have used below commands and it worked : sudo yum remove qpid-tools sudo yum remove qpid-cpp-server Thank you – Reetesh Nigam Nov 07 '14 at 06:57
  • Excellent! I'm glad I could help. Keep in mind though for the future; stackoverflow is for programming questions, so questions of this nature should be posted on superuser.com. :) – Erik Natvig Nov 08 '14 at 00:19