cron 썸네일형 리스트형 Run Graphql Server with graphql-yoga graphql 서버를 가장 쉽게 띄우는 방법은 graphql-yoga 모듈을 이용하는 것이다.graphql-yoga: https://github.com/prisma/graphql-yoga index.ts와 app.ts를 구분하여 서버 설정 부분은 index.ts에 정의해주고서버 내에 올라갈 yoga 설정의 경우 app.ts 로 분리하여서 작업.class App { public app: GraphQLServer; constructor() { this.app = new GraphQLServer({ schema, context: req => { const { connection: { context = null } = {} } = req; return { req: req.request, context, }; }.. 더보기 서버 시간 동기화 리눅스 서버 시간 동기화]$ yum -y install rdate]$ rdate -s time.bora.net && hwclock -w 위 rdate 명령으로 동기화를 해줄 수 있으며,주기적으로 시간값이 달라질 경우 crontab 에 등록하여 주기적으로 동기화 해 줄 수 있음. ]$ crontab -e 0 * * * * root /usr/bin/rdate -s time.bora.net && /sbin/hwclock -w 위 크론을 등록해주면 매 시간마다 한번씩 동기화를 해줌. 더보기 이전 1 다음