>  기사  >  데이터 베이스  >  Linux에서 mysql 서비스를 시작하고 종료하는 명령은 무엇입니까?

Linux에서 mysql 서비스를 시작하고 종료하는 명령은 무엇입니까?

WBOY
WBOY앞으로
2023-05-31 12:12:022587검색

Linux에서 mysql 서비스를 시작하고 종료하는 명령은 무엇입니까?

1. Linux에서 mysql 서비스를 보는 두 가지 방법:

방법 1:

 [root@localhost bin]ps -ef|grep mysql1

방법 2:

 [root@localhost bin]netstat -nlp1

2. Linux에서 mysql 서비스를 시작하는 두 가지 방법:

명령줄 방법:

 [root@localhost bin]cd /usr/bin
 [root@localhost bin]./mysqld_safe &12

서비스 방법:

 [root@localhost ~]service mysql start
 如果服务在启动状态,直接重启服务用以下命令:
 [root@localhost ~]service mysql restart123

3. Linux에서 mysql 서비스를 닫는 두 가지 방법:

명령줄 방법:

 [root@localhost ~]mysqladmin -u root shutdown1

서비스 방법:

 [root@localhost ~]service mysql stop

위 내용은 Linux에서 mysql 서비스를 시작하고 종료하는 명령은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제