Showing posts with label nginx. Show all posts
Showing posts with label nginx. Show all posts

Thursday, May 23, 2024

Prometheus and Grafana : Monitor MySQL/MariaDB

 1.Install MySQL Exporter#curl -s https://api.github.com/repos/prometheus/mysqld_exporter/releases/latest   | grep browser_download_url   | grep linux-amd64 | cut -d '"' -f 4   | wget -qi -#tar xvf mysqld_exporter*.tar.gz#sudo mv  mysqld_exporter-*.linux-amd64/mysqld_exporter /usr/local/bin/#sudo chmod +x /usr/local/bin/mysqld_exporter2.Checking version of mysql...

Tuesday, May 21, 2024

Wednesday, April 24, 2024

Nginx : Deploy Laravel

1.Install Laravel2.Edit parament in Nginx configurationserver {        server_name example.com;        listen X.X.X.X;        root /home/example/public_html/laravel/public; <- change the active laravel folder        index index.php index.htm index.html;       ...