How can I set up a cron job to run every night at 2:30? I am familiar with configuring it to run at 2:00, but not 2:30.
Use 30 2 * * *: minute comes before hour in cron, so 2:30 AM is 30 2, not 2 30. For 2:30 PM use 30 14. The run happens in the scheduler's timezone.