Tag: MySQL

Django-Database relationship(MySQL configuration)

While developing a website ,we need to store app data and user information in a safe and secure place and it should be easily accessible by the webapp so that the data can be stored and retrieved at a faster rate and the user can experience a smooth web service.Speaking about the data,wher...

CodeIgniter 4 Query Builder union() and unionAll() methods

UNION and UNION ALL set operators return the combined rows from 1 or more SELECT queries. CodeIgniter 4 Query Builder now supports UNION and UNION ALL queries with the $builder->union() and $builder->unionAll() methods respective...

Building ETL Job: Transferring Data from MySQL to Redshift using Python

Extract, Transform, Load (ETL) is a data pipeline process that involves extracting data from a source system, transforming it in some way, and then loading it into a target system. In this article, we’ll demonstrate how to build an ETL job that extracts data from a MySQL database and loads it ...

Stop using XAMPP: A Step-by-Step Guide to Docker for PHP and MySQL

Introduction In the fast-paced world of web development, staying up-to-date with the latest tools and technologies is essential. One such innovation is Docker, a powerful platform for developing, shipping, and running applications. In this article, we’ll explore how to replace traditional t...

Automate provisioning WordPress with MySQL database via Terraform

√ What exactly is WordPress? WordPress, at its core, is the easiest and most popular way to create your own website or blog. WordPress, in fact, powers more than 1 in 4 websites on the Internet. WordPress is a free and open-source content management system. A content management system (CMS)...

How to Reset MySQL root password in Ubuntu

Passwords are hard to remember, so if you have forgotten the MySQL root password, luckily, there is a way to change it. This post has been written for you, and by the end of this post, you will have successfully changed the password of MySQL. This blog demonstrates how to reset the root&nbsp...

How to create a read-only MySQL user?

First, login as a MySQL administrator from your terminal / command prompt using the following command: mysql -u root -p You’ll prompted to enter the password. Type the password for the root account. Create a new MySQL user account. CREATE USER 'report'@'%&...

mysql-server — ERROR 1698 (28000): Access denied

Comence a instalar mysql-server por medio de consola de Gnu/Linux y se me presento el siguiente error ERROR 1698 (28000): Access denied for user ‘root’@’localhost’ al momento de usar mysql -u root en la consola, tambien probe en workbench y me decia el mis...