Cron 표현식을 작성하고 확인합니다. 프리셋을 선택하거나 다섯 개의 필드를 편집하고, 내 시간대에서 다음 실행 시간을 확인하세요. 브라우저에서 실행됩니다.
Cron 생성기 사용 방법
프리셋을 선택하거나 다섯 필드에 Cron 표현식을 입력하세요.
편집하는 동안 각 필드의 레이블과 유효성이 표시됩니다.
로컬 시간대로 계산된 다음 실행 시간을 확인하세요.
A cron expression is a compact string of five fields that tells a scheduler when to run a task: minute, hour, day of month, month and day of week. It is powerful but easy to get wrong, and a misplaced asterisk can mean a job fires every minute instead of once a day.
Start from a common preset (every hour, every day at midnight, every Monday at 9 AM) or build a custom expression field by field, with each field labeled and validated as you type.
Crucially, it previews the next five run times in your browser's local time zone, so you can confirm the schedule actually does what you intended before you deploy it.
Each field accepts more than a single value: an asterisk means every value, a list like MON,WED,FRI picks several, a range like MON-FRI spans days, and a step like */15 in the minute field runs at 0, 15, 30 and 45 past the hour.
The output works with standard cron on Linux and macOS, crontab, AWS EventBridge, GitHub Actions schedules and most job-scheduling libraries.
One classic trap is setting both day-of-month and day-of-week: standard cron then runs when either matches, not both, so a job can fire more often than expected. Leaving one of the two as an asterisk avoids the surprise.
This tool targets standard five-field cron, so platform extensions like a seconds field or @reboot are not produced here. Remember too that the job runs in the executing server's time zone, which may differ from the local preview.
자주 묻는 질문
순서대로 분, 시, 일(월), 월, 요일입니다. 별표(*)는 모든 값을 의미하므로 * * * * *는 매분 실행됩니다.
분 필드에 스텝 값을 사용하세요. */15 * * * *는 매 시간 0, 15, 30, 45분에 실행됩니다.
0에서 6까지의 숫자(일요일은 0, 7도 일요일을 의미)나 MON 같은 세 글자 약어를 사용할 수 있습니다. 범위(MON-FRI)와 목록(MON,WED,FRI)도 사용 가능합니다.
일(월)과 요일이 모두 설정된 경우, 표준 Cron은 두 조건 중 하나라도 일치하면 실행합니다. 예상치 못한 동작을 피하려면 하나를 *로 두세요.
이 생성기는 표준 다섯 필드 Cron을 대상으로 합니다. 일부 플랫폼에서 추가하는 초 필드나 @reboot 같은 확장 문법은 여기서 생성되지 않습니다.
미리보기는 브라우저의 로컬 시간대로 다음 실행 시간을 표시합니다. 작업을 실행하는 서버는 자체 시간대를 사용하므로 일치하는지 확인하세요.
이 도구 임베드하기
이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.
<iframe src="https://monu.tools/embed/ko/cron-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>관련 도구