미스터 역마살
Mysql 접속, STRAT, RESTART 명령어 본문
728x90
반응형
Mysql 접속
mysql -h[host주소] -u[user명] -p
2가지 방법
## 리눅스 서비스로 등록되지 않은 경우
/etc/init.d/mysql start
/etc/init.d/mysql stop
## 리눅스 서비스로 등록된 경우
service mysqld start
service mysqld stop
Mysql Start, restart, 상태 확인
작업 | 우분투 명령어 | Centos 6 명령어 | Centos 7 명령어 |
시작 | service mysql start | service mysqld start | systemctl start mysqld |
정지 | service mysql stop | service mysqld stop | systemctl stop mysqld |
재시작 | service mysql restart | service mysqld restart | systemctl restart mysqld |
상태 확인 | service mysql status | service mysqld status | systemctl status mysqld |
728x90
'Database > MYSQL' 카테고리의 다른 글
캐릭터 셋 바꾸는 방법 (0) | 2022.07.31 |
---|---|
SHOW PROCESSLIST (0) | 2022.07.30 |
Mysql Server parameter (0) | 2022.07.30 |
리눅스에 Mysql 설치 하기 (0) | 2022.07.28 |
DBeaver MYSQL 접속 오류 - Public Key Retrieval is not allowed (0) | 2021.07.19 |
Comments