The syntax is as follows to start, stop, or restart the mysql server on a Linux or Unix-like systems. [donotprint]
Tutorial details | |
---|---|
Difficulty | Easy (rss) |
Root privileges | Yes |
Requirements | None |
Time | 1m |
CentOS/RHEL/Fedora/Scientific Linux version 4.x/5.x/6.x or older users
The syntax is:
### To start ### service mysqld start # OR /etc/init.d/mysqld start ### To stop ### service mysqld stop # OR /etc/init.d/mysqld stop ### To restart ### service mysqld restart # OR /etc/init.d/mysqld restart
CentOS/RHEL/Fedora/Scientific Linux version 7.x or newer users
The syntax is as follows to start mariadb/mysql server:
## mariadb ## systemctl start mariadb ## mysql systemctl start mysqld
The syntax is as follows to stop mariadb/mysql server:
## mariadb ## systemctl stop mariadb ## mysql systemctl stop mysqld
The syntax is as follows to restart mariadb/mysql server:
## mariadb ## systemctl restart mariadb ## mysql systemctl restart mysqld
Debian/Ubuntu Linux users
The syntax is as follows to start/stop/restart mysql server:
#### To start #### /etc/init.d/mysql start # OR service mysql start #### To stop #### /etc/init.d/mysql stop # OR service mysql stop #### To restart #### /etc/init.d/mysql restart # OR service mysql restart
FreeBSD Unix server user
To start the Mysql server type:
# /usr/local/etc/rc.d/mysql-server start
To restart the Mysql server type:
# /usr/local/etc/rc.d/mysql-server restart
To stop the Mysql server type:
# /usr/local/etc/rc.d/mysql-server stop
🐧 Please support my work on Patreon or with a donation.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 2 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Excelente me funciono el comando tal cual, muchas gracias.
Really useful post