Khalid ImamforGeekyAnts Tech Bloghysterical-ambition-request-53.hashnode.net·Sep 16, 2022How to Configure MariaDB Master-Slave Replication on AlmaLinuxIntroduction MariaDB replication is a process that allows you to automatically copy data from one database server to another server. In this article, we are going to discuss how to configure MariaDB Master-Slave replication on an AlmaLinux platform t...Discuss·807 readsMariaDB
Sathya Molagodasathyamol93.hashnode.net·Dec 24, 2022Install MariaDB on DockerIntro In this article, I will walk you through the process of installing MariaDB on a new Docker container. This process is useful if you’re using Docker containers to host different applications and orchestrate them all together in a highly availabl...Discuss·49 readsDockerDocker
Osama Ahmedosamaahmed.hashnode.net·May 22, 2022How to Install and Configure LAMP stack on Arch LinuxLAMP => Linux — Apache —MySQL— PHP Most Web Applications run on top of a stack consisting of an operating system (Linux) and a web server, like Apache HTTP Server or nginx. a relational DBMS, like MySQL or PostgreSQL. a programming language, like PHP...DiscussLinux
AMIT KUMAR MISHRAamit0617.hashnode.net·Apr 16, 2023How I migrated MariaDB on Napptive Playground? and how you can migrate your own projects too.Hi everyone! In this blog post, I'm going to share with you how I migrated MariaDB on Napptive Playground. Napptive Playground is a cloud-native platform that lets you deploy and manage applications using Open Application Model (OAM) specifications. ...DiscussMariaDB
Elikem Seake-Kwawuenlightenme.hashnode.net·Apr 12, 2023ChatGPT couldn't solve this!Context So I was recently trying to debug an application. It was an extremely buggy legacy software that kept giving everyone headaches - from the users to the founders. Several developers had been on the project but each left behind huge amounts of ...Discuss·30 readschatgpt
Mark Durhammarkdurham.hashnode.net·Mar 26, 2023Node.js Fortune of the Day WebappEdit: This site's infrastructure is now managed with Terraform. I've published a write-up here. fotd.markdurham.co.uk is a Node.js Fortune of the Day generator - a very spartan one. It may lack cookies and Chinese food, but it did provide me with an ...DiscussAWS
Nathan Pricegravityfargo.hashnode.net·Mar 18, 2023Start mariadb in recovery mode - Unraid: official docker containermysql recovery mode ssh into unraid cd /mnt/user/appdata/mariadb-official/config nano my.cnf paste in [mysqld] innodb_force_recovery=1 exit chmod 0444 my.cnf restart the docker container. Fix whatever broke specifically, I broke a table in my nex...DiscussMySQL
Nino Stephenninostephen.hashnode.net·Feb 4, 2023Unleash the Data Beast: A Fun Guide to Building a Robust Galera Cluster with LXC/LXD ContainersThe Challenge Setup a MariaDB/Galera cluster Setup HA Proxy for load balancing Quick Introduction In a site will relatively low traffic, a database hosted on the same server as that of the site files would be sufficient. But with more traffic to ...DiscussLXC
Muhamad Dani Ramandacehamot.hashnode.net·Jan 25, 2023Docker Practice - Session 3Database Docker Image Mysql/MariaDB MariaDB Official Image sudah menyiapkan image docker Mariadb yang bisa langsung di pakai dan di jalankan tanpa perlu repot kita menyiapkan dari install server baru, install depedencies, dll. untuk mendownload image...Discuss·65 readsDockerDocker
Hussain FakhruddinforBit Sizehussainanjar-1672405708490.hashnode.net·Dec 31, 202210 Tips for Optimizing MySQL QueriesOptimizing MySQL queries is an important part of maintaining a performant database. Whether you're running a high-traffic website or simply want to ensure that your queries are running as efficiently as possible, there are several techniques you can ...Discuss·269 readsMySQL
Hussain FakhruddinforBit Sizehussainanjar-1672405708490.hashnode.net·Dec 30, 2022How to create a Read Only user in MySQLTo create a read-only user in MySQL or MariaDB, you can use the following steps: Connect to your MySQL server using a client tool such as MySQL Workbench or the MySQL command-line client. Run the following SQL statement to create a new user with a ...Discuss·62 readsMySQL
Sathya Molagodasathyamol93.hashnode.net·Dec 24, 2022Install MariaDB on DockerIntro In this article, I will walk you through the process of installing MariaDB on a new Docker container. This process is useful if you’re using Docker containers to host different applications and orchestrate them all together in a highly availabl...Discuss·49 readsDockerDocker
Mohamad Mahmoodmohamadrazzimy.hashnode.net·Dec 8, 2022Working with Database Servers on COLABCreate sample dataframe import pandas as pd from io import StringIO SAMPLEDATA = StringIO(''' tweet_id,sentiment,author,content 1956967341,"empty","xoshayzers","@tiffanylue i know i was listenin to bad habit earlier and i started freakin at his part...Discuss·100 readscolabGoogle Colab