Heim > Artikel > Betrieb und Instandhaltung > So überprüfen Sie, ob MySQL im Centos-System installiert ist
centos7 wird mit Mariadb geliefert, einer Variante von MySQL.
Überprüfen Sie, ob es installiert wurde:
yum list installed mysql* rpm -qa | grep mysql*
(Empfohlenes Tutorial: Centos-Nutzungstutorial)
Erweiterte Kenntnisse:
Installieren MySQL-Software (mariadb)
yum install mysql*
Mysql starten
systemctl start mariadb.service 或者 systemctl start mysqld.service
Ende
systemctl stop mariadb.service 或者 systemctl stop mysqld.service
Neustart
systemctl restart mariadb.service 或者 systemctl restart mysqld.service
Start automatisch hoch Kai
systemctl enable mariadb.service 或者 systemctl enable mysqld.service
Empfohlene Video-Tutorials: Linux-Video-Tutorial
Das obige ist der detaillierte Inhalt vonSo überprüfen Sie, ob MySQL im Centos-System installiert ist. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!