반응형

스크립트 만들고

/etc/init.d/스크립트

스크립트 만들고

update-rc.d start.sh defaults

defaults : runlevel 3,5

실행순서/종료순서는 지정하지 않아도 된다.

- 만약 등록된 것을 지우고 싶다면

update-rc.d -f start.sh remove

재부팅 확인 고고

 

반응형

'server eng' 카테고리의 다른 글

리눅스와 윈도우 폴더 연동[mount smb cifs]  (0) 2023.06.03
linux ubuntu smb user 만들기 10초~컷  (0) 2023.06.03
Ubuntu 20.04 helm install  (0) 2023.04.14
fire wall j-web juniper  (0) 2023.04.13
fire wall j-web juniper  (0) 2023.03.28
반응형

wegt https://github.com/prometheus/prometheus/releases/download/v2.43.0/prometheus-2.43.0.linux-amd64.tar.gz

tar -zxvf prometheus-2.43.0.linux-amd64.tar.gz

폴더명은  prometheus-2.43.0.linux-amd64.tar.gz ->  prometheus로 바꾸고 제가 설치를 하고자하는 /BiO/Install 로 mv했습니다~

그후 systemctl에 데몬 실행 준비를 해주고 스타트~ 

vi /etc/systemd/system/prometheus.service 

 

[Unit]
Description=Prometheus Server
Documentation=https://prometheus.io/docs/introduction/overview/
After=network-online.target

[Service]
User=root
Restart=on-failure

#Change this line if you download ther
#Prometheus on different path user
ExecStart=/BiO/Install/prometheus \
  --config.file=/BiO/Install/prometheus/prometheus.yml \
  --storage.tsdb.path=/data/prometheus \
  --web.console.templates=/BiO/Install/prometheus/consoles \
  --web.console.libraries=/BiO/Install/prometheus/console_libraries \
  --web.listen-address=0.0.0.0:9090 \
  --web.enable-admin-api

[Install]
WantedBy=multi-user.target

systemctl daemon-reload;systemctl start prometheus.service; systemctl status prometheus.service 

데몬 리로드, 스타트, 스텟터스~ 확인~~~~ 후 웹으로도 확인 ! 

짜쟌

 

 

반응형

'server eng > Grafana' 카테고리의 다른 글

우분투 20.04 그라파나 Grafana INSTALL [매우 간단]  (0) 2023.04.16

+ Recent posts