Skip to content

Commit

Permalink
MariaDB Troubleshooting.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
chmvreddy committed Jul 1, 2020
1 parent 2baf9df commit baa3f3e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions MariaDB Troubleshooting.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
There is a critical issue going on with the Nautilus application in Stratos DC. The production support team identified that the application is unable to connect to the database. After digging into the issue, the team found that mariadb service is down on the database server.


Look into the issue and fix the same.



1 systemctl status mariadb
2 systemctl start mariadb
3 systemctl enable mariadb
4 systemctl start mariadb
5 systemctl status mariadb -l
6 cd /var/log/mariadb/
7 ls
8 cat mariadb.log -- YOU FIND LOGS HERE ,HERE I HAVE FOUND UNABLE TO START
9 cd /var/run/
10 ls -la
11 sudo chown mysql:mysql /var/run/mariadb/ -- CHANGE OWNERSHIP SETTINGS TO MYSQL IN MARIADB FILE
12 ls -la
13 systemctl restart mariadb
14 systemctl start mariadb
15 systemctl status mariadb

0 comments on commit baa3f3e

Please sign in to comment.