在Linux中,重啟數(shù)據(jù)庫(kù)服務(wù)的方法取決于你使用的數(shù)據(jù)庫(kù)類(lèi)型和Linux發(fā)行版
對(duì)于MySQL或MariaDB數(shù)據(jù)庫(kù):
對(duì)于基于Systemd的系統(tǒng)(如Ubuntu 16.04及更高版本、CentOS 7及更高版本),請(qǐng)使用以下命令:
sudo systemctl restart mysqld
或者
sudo systemctl restart mariadb
對(duì)于基于SysVinit的系統(tǒng)(如CentOS 6、Debian 8等),請(qǐng)使用以下命令:
sudo service mysql restart
或者
sudo service mariadb restart
對(duì)于PostgreSQL數(shù)據(jù)庫(kù):
對(duì)于基于Systemd的系統(tǒng)(如Ubuntu 16.04及更高版本、CentOS 7及更高版本),請(qǐng)使用以下命令:
sudo systemctl restart postgresql
對(duì)于基于SysVinit的系統(tǒng)(如CentOS 6、Debian 8等),請(qǐng)使用以下命令:
sudo service postgresql restart
對(duì)于MongoDB數(shù)據(jù)庫(kù):
對(duì)于基于Systemd的系統(tǒng)(如Ubuntu 16.04及更高版本、CentOS 7及更高版本),請(qǐng)使用以下命令:
sudo systemctl restart mongod
對(duì)于基于SysVinit的系統(tǒng)(如CentOS 6、Debian 8等),請(qǐng)使用以下命令:
sudo service mongod restart
請(qǐng)根據(jù)你的數(shù)據(jù)庫(kù)類(lèi)型和Linux發(fā)行版選擇合適的命令。如果你不確定數(shù)據(jù)庫(kù)類(lèi)型,請(qǐng)查看你的系統(tǒng)文檔或聯(lián)系系統(tǒng)管理員以獲取更多信息。