exist 썸네일형 리스트형 리눅스에서 PID 로 프로세스 동작 유무 체크 리눅스에서 프로세스가 동작중일 경우해당 정보들이 /proc/[pid] 폴더 내부에 존재하게 됨. 프로그래밍적으로 pid를 이용해서 동일 프로세스가 동작하는지 여부는위 폴더 유무로 체크해 줄 수 있음.$pidFileName = "/tmp/mypid"; if (file_exists($pidFileName)) { $oldPid = file_get_contents($pidFileName); if (file_exists("/proc/$oldPid")) { $this->response("Exists Process"); return false; }} 주 언어가 php인 관계로 간단하게 위와같이 진행해주면해당 스크립트가 다른 프로세스에서 동작중인지 여부를 체크해 줄 수 있음. 물론. 이때 프로세스 진입 단계에 현재 프.. 더보기 [Django] Use Django ORM without migrate Django ORM is wonderful framwork!!When you want to use it without migrate, can setting simply.Just set managed option to True on Meta class. class TestModel(models.Model): name = models.CharField() ... class Meta: managed = False Defaults to True, meaning Django will create the appropriate database tables in migrate or as part of migrations and remove them as part of a flush management command.T.. 더보기 이전 1 다음