StartIT

centos7 mysql, postgresql 명령어 본문

DB

centos7 mysql, postgresql 명령어

IT스타터 2020. 6. 29. 22:54
반응형

1. postgresql 명령어

sudo systemctl status postgresql.service

서비스 상태 확인

sudo systemctl start postgresql.service

서비스 시작

sudo systemctl stop postgresql.service

서비스 중지

sudo service postgresql stop

서비스 중지

sudo systemctl restart postgresql.service

서비스 재 시작

sudo systemctl enable postgresql.service

서비스 자동 시작

sudo systemctl disable postgresql.service

서비스 자동 시작 중지

2.mysql 명령어

sudo systemctl status mysqld

서비스 상태 확인

sudo systemctl start mysqld

서비스 시작

sudo systemctl stop mysqld

서비스 중지

sudo systemctl restart mysqld

서비스 재 시작

sudo systemctl enable mysqld

서비스 자동 시작

sudo systemctl disable mysqld

서비스 자동 시작 중지

 

반응형
Comments