diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-07-03 23:14:48 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-07-03 23:14:48 +0200 |
| commit | 8414a8dc90dfcde6e3f2323e1e8efac00a4b44a0 (patch) | |
| tree | a4b5c3318f6c8f7713fe4ea60301af67418d3bd3 /README.md | |
| parent | c91db68711845f582a6eb802c8d9a90e41262602 (diff) | |
| download | dotfiles-8414a8dc90dfcde6e3f2323e1e8efac00a4b44a0.tar.gz dotfiles-8414a8dc90dfcde6e3f2323e1e8efac00a4b44a0.zip | |
Add info about mysql
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -47,6 +47,29 @@ $ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bas $ nvm install node ``` +##### mysql + +- Ensure the MySQL service starts when you reboot or startup your machine. +```bash +$ sudo systemctl start mysqld +``` + +- Setup MySQL for use +```bash +$ sudo mysql_secure_installation +``` + +- To check its installed and working just open up mysql command prompt with +``` +$ sudo mysql +``` + +- If you see the following prompt, You're good to go! +``` +MariaDB [(<span class="hljs-literal">none)]> +</span> +``` + - - - ### Commands |
