Sometimes you screw up an application and are unable to use rpm -e to remove them from your system. Here is how you go about doing that:
To find installed RPM packages:
rpm -qa | grep <string>
To remove:
rpm -e --nodeps --allmatches <package name>