Created MySQL tips (markdown)

ghost-from-the-past 2021-04-14 12:55:10 +02:00
parent 71c3e80a09
commit fbd19b1b3d

13
MySQL-tips.md Normal file

@ -0,0 +1,13 @@
<p>To enable or disable the automatic start of MySQL service when you boot your machine use</p>
<blockquote>
<p>&gt;systemctl enable mysql</p>
<p>&gt;systemctl disable mysql</p>
</blockquote>
<p>
<br/>
</p>
<p>To start or stop manually the MySQL service use</p>
<blockquote>
<p>&gt;systemctl start mysql.service</p>
<p>&gt;systemctl stop mysql.service</p>
</blockquote>