Hello,
Sorry but I am new to Apache 2.x and need to get SSL installed and working, the RH binaries used to have Apache preconfigured with SSL so it was a no brainer. Can anyone give me a hand or point me to an online doc? Everything I find makes me recompile everything which I would really rather not do.
It still ships preconfigured - but the ssl config is separated out in /etc/httpd/conf.d/ssl.conf now.
Oh and one side thing, how can I remove RPMS by wild card like *gnome*?
Well ok - but this can be dangerous -
for i in `rpm -qa | grep gnome` do rpm -evv --nodeps $i done
a saner approach is this:
rpm -qa | grep -i gnome | sort > gnome-rpms
review the file gnome-rpms and delete any packages you don't want removed
for i in `cat gnome-rpms` do rpm -evv --nodeps $i done
Joe
-- Shrike-list mailing list Shrike-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/shrike-list