250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SSH
- nginx
- 안드로이드
- php
- Vue
- node
- MacOS
- alb
- Laravel
- Prometheus
- Cordova
- https
- MYSQL
- flutter
- Android
- 해시키
- pip
- 파이썬
- ubuntu
- FCM
- Passport
- OAuth
- AWS
- window
- PostgreSQL
- selenium
- mac
- Vue.js
- python
- 구글 API
Archives
- Today
- Total
728x90
반응형
목록OS (3)
728x90
반응형
print( sjw.iq == 200) output : true
[Linux] 일정 기간 지난 파일 찾기 및 삭제.
찾기 find /var/log/dkron/ -name '*.log' -mtime +30 삭제하기. - 뒤에 -delete 옵션을 추가. find /var/log/dkron/ -name '*.log' -mtime +30 -delete
OS/Ubuntu
2023. 4. 25. 16:55
[Ubuntu] Service 등록하기
원하는 경로에서 원하는 명칭으로 .service 파일을 생성. ex) /user/sjwiq200/dummy.service [Unit] Description=Dummy Server [Service] ExecStart=/usr/local/share/dummy/bin/dummy WorkingDirectory=/usr/local/share/dummy/bin [Install] WantedBy=multi-user.target 아래의 명령어로 복사 및 서비스 등록 # 바로 아래 경로에서 작업해도 상관없음. sudo cp *.service /lib/systemd/system/ sudo systemctl daemon-reload sudo systemctl enable dummy.service 실행시킬 파일을 ExecSt..
OS/Ubuntu
2023. 2. 16. 15:40