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
- 기타 연주
- OpenCV
- label
- 프로그래머스
- pytorch
- VS Code
- 컨테이너
- Visual Studio
- C++
- SSH
- C
- 핑거스타일
- pandas
- Python
- JSON
- LIST
- mysql
- C#
- 오류
- Numpy
- YOLO
- paramiko
- windows forms
- Linux
- pip
- Selenium
- ubuntu
- Docker
- error
- 채보
Archives
- Today
- Total
기계는 거짓말하지 않는다
Failed to restart service_name.service: Unit service_name.service is masked 오류 본문
Linux
Failed to restart service_name.service: Unit service_name.service is masked 오류
KillinTime 2024. 1. 5. 21:45service start 또는 restart 할 때, service is masked 오류가 발생하는 경우
아래 명령어를 입력한다.
sudo systemctl unmask service_name.service
이 명령어로 해결할 수 없다면 다음과 같은 명령어를 차례대로 입력해 본다.
# /lib/systemd/system/ 경로에서
# ls -l 입력 후 service_name.service 심볼릭 링크가 /dev/null 이라면 지워준다.
sudo rm /lib/systemd/system/service_name.service
sudo systemctl daemon-reload
'Linux' 카테고리의 다른 글
Linux grep 명령어 -v 옵션 특정 패턴 필터링 (0) | 2024.02.25 |
---|---|
Ubuntu firewalld 설치, 방화벽 포트 열기, 적용 (0) | 2024.01.11 |
Linux Core Dump 설정 (0) | 2024.01.02 |
Target Packages (stable/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list and /etc/apt/sources.list.d/some_package.list 오류 (0) | 2023.12.27 |
Linux 명령어에서 -(Hyphen)으로 시작하는 이름 처리하기 (0) | 2023.12.11 |
Comments