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 | 31 |
Tags
- ConstraintLayout
- enum
- lifecycle
- vuex
- AWS
- map
- 생명주기
- elementAt
- list
- recyclerview
- LiveData
- ReactNative
- function
- Service
- Swift
- docker-compose
- union
- collection
- MINUS
- animation
- Generic
- react native
- docker
- CLASS
- Kotlin
- Foreign Key
- Filter
- class component
- mongoose
- Interface
Archives
- Today
- Total
개발 일기
systemctl ? 본문
리눅스에서 시스템에 대한 서비스를 조작할수 있습니다.
서비스 상태 확인 :)
systemctl status service_name.service
서비스 시작 , 중지 , 재시작 :)
systemctl start service_name.service
systemctl stop service_name.service
systemctl restart service_name.service
부팅시 자동 실행 :)
systemctl enable service_name.service // 자동실행
systemctl disable service_name.service // 자동실행 막기
실행중인 서비스 목록 확인 :)
systemctl list-units --type=service
Comments