리눅스(ubuntu) 서버 관리 명령어
1 목적
서버 관리 명령어 나열
2 퀵
Ubuntu 패치 업데이트
sudo apt update # Fetches the list of available updates
sudo apt upgrade # Installs some updates; does not remove packages
sudo apt full-upgrade # Installs updates; may also remove some packages, if needed
sudo apt autoremove # Removes any old packages that are no longer needed
읽기 - READ
netstat -ntlp #Check listing network
ll #파일 목록
uptime #서비스 가동 시간
free -h #램 사용량 체크
df -TH #전체 디스크 용량 체크
netstat #IO 네트쿼크 체크
service postgresql status #Check postgresql db status
sudo netstat -plunt |grep postgres #Check running psql
/usr/lib/postgresql/12/bin/psql -p 5432
$ sudo systemctl is-active postgresql
$ sudo systemctl is-enabled postgresql
$ sudo systemctl status postgresql #id / pwd
netstat -nlp | grep :80 #포트에 binding된 프로세스 확인
검색 - SEARCH
ps -ef | grep postgresql
Author And Source
이 문제에 관하여(리눅스(ubuntu) 서버 관리 명령어), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@csk917work/리눅스ubuntu-서버-관리-명령어
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
sudo apt update # Fetches the list of available updates
sudo apt upgrade # Installs some updates; does not remove packages
sudo apt full-upgrade # Installs updates; may also remove some packages, if needed
sudo apt autoremove # Removes any old packages that are no longer needed
netstat -ntlp #Check listing network
ll #파일 목록
uptime #서비스 가동 시간
free -h #램 사용량 체크
df -TH #전체 디스크 용량 체크
netstat #IO 네트쿼크 체크
service postgresql status #Check postgresql db status
sudo netstat -plunt |grep postgres #Check running psql
/usr/lib/postgresql/12/bin/psql -p 5432
$ sudo systemctl is-active postgresql
$ sudo systemctl is-enabled postgresql
$ sudo systemctl status postgresql #id / pwd
netstat -nlp | grep :80 #포트에 binding된 프로세스 확인
ps -ef | grep postgresql
Author And Source
이 문제에 관하여(리눅스(ubuntu) 서버 관리 명령어), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@csk917work/리눅스ubuntu-서버-관리-명령어저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)