Notice
Link
- Today
- Total
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스크롤적용
- group by
- springboot 재가동
- pid 찾아 kill
- Activity 전체화면
- CentOS
- springboot
- SQL
- 파티션 빠른 삭제
- ffmpeg
- MFC
- kill -9
- 코드로 서버 재실행
- 피쉬랜드
- 시간대 테이블생성
- 터치좌표 view
- Back 키 클릭 감지
- 말줌임 CSS
- sql exception
- 가변영역 스크롤
- mybatis exception
- reactnative
- vc++
- rn
- 시간대별 통계
- MariaDB
- c언어
- MySQL
- view 획득
- CSS
Archives
개발은 하는건가..
[linux] 서비스 명령어 모음 본문
반응형
# 서비스 조회
systemctl list-unit-files | grep '검색할 서비스명'
# 서비스 시작
systemctl start 서비스명.service
# 서비스 중지
systemctl stop 서비스명.service
# 서비스 재시작
systemctl restart 서비스명.service
# 서비스 enable (부팅 시 자동 구동 설정)
systemctl enable 서비스명.service
# 서비스 disable (부팅 시 자동 구동 해제)
systemctl disable 서비스명.service
'Server, Maria DBMS' 카테고리의 다른 글
Mysql/MariaDB 명령 모음 (0) | 2024.08.01 |
---|---|
MySql/Mariadb 에서 .sql 파일을 실행하기 (0) | 2024.07.26 |
실행 중인 프로세스 자동으로 찾아서 kill 하기 (0) | 2023.07.03 |
[linux] 파일 찾기 명령 (0) | 2023.02.20 |
[linux] 심볼릭 링크(symbolic link) 사용 (0) | 2023.02.15 |
Comments