Hello Franklin,
The router performing the redistribution must run both OSPF and RIP. They must be fully working before, i.e. you must see both OSPF and RIP routes being learned on that router. The redistribution of OSPF into RIPv2 must be configured in the RIP protocol configuration, and should look as follows (assuming you are running OSPF process number 1):
router rip
redistribute ospf 1 metric 1
Using the "metric 1" is important because with redistribution, the original route metric usually cannot be simply copied to the destination routing protocol, and instead, a new starting (sometimes called seed) metric must be defined. EIGRP and RIP require this metric to be explicitly specified, otherwise, the route will not be redistributed. Perhaps this is the case with your configuration.
Best regards,
Peter