Posts

Showing posts from June, 2022

How to Reset the MySQL Root Password on Ubuntu 22.04 | vetechno

Image
How to Reset the MySQL Root Password on Ubuntu 22.04 | vetechno Have you failed / forgotten to remember the root password for MySQL database? Stress not, it works out, and there is an answer! In this article, we will reset the MySQL root password in Ubuntu 22.04 LTS by starting MySQL with the --skip-grant-tables option . It is a simple guide that works with any modern Linux distribution like CentOS 7 and Ubuntu 18.04, 20.04 LTS Before moving on to the solutions, it is assumed that you have the MYSQL 8.0  version of the MySQL database for Ubuntu. Also Read:-   * How to install Mysql 8.0.29 on Ubuntu 22.04 LTS * How to install Mysql 8.0.28 on Ubuntu 22.04 LTS * How to install MySQL 5.5 on Ubuntu 20.04 LTS * How to Install mysql 5.6 ubuntu 20.04 LTS How to Reset the MySQL Root Password on Ubuntu 22.04 LTS Step 1. Check Mysql Version. First, you must confirm the version of MySQL on Ubuntu that you perform because the commands will be different.  MySQL Version Output: vikash@vetechno: ~$

Increase max_input_vars for PhpMyAdmin | vetechno

Image
Increase max_input_vars for PhpMyAdmin | vetechno In this blog post we are going to fix a warning message i.e Warning: a form on this page has more than 1000 fields. On submission, some of the fields might be ignored, due to PHP's max_input_vars configuration .  This message generally comes when we export a large database table from phpMyAdmin. This warning message is about the default max_input_vars value seen in the phpMyAdmin’s  or php.ini configuration file: Also read  How to install Mysql 8.0.28 on Ubuntu 22.04 LTS   How to install MySQL 5.5 on Ubuntu 20.04 LTS    Install mysql 5.6 ubuntu 20.04 LTS    How to Fix Warning: a form on this page has more than 1000 fields Step1. Open php.ini file from your favorite text editor, In my case location of php.ini file is /etc/php.ini  Note:- The location may differ according to the PHP version. Step2. Search line max_input_vars By default the line max_input_vars will be commented, To enable uncomment by removing ; ; How many GET/POST/CO

How to Install MySQL 8.0 on CentOS 8 / RHEL 8 | vetechno

Image
How to Install MySQL 8.0 on CentOS 8 / RHEL 8 | vetechno Hey reader, In this tutorial we are going to install mysql 8.0.29, which is the latest version of mysql community.  MySQL is an open-source database management system and free to use. It is commonly installed as part of the most popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl) stack and LEMP (Linux, Nginx, MySQL, PHP) stack. It uses a relational database and SQL (Structured Query Language) to manage its data. It is the most common software stack that comes up with dynamic websites and web applications. This tutorial will help you to install MySQL 8.0 on CentOS 8 and RHEL 8 systems. Prerequisites:- * Need root user access. * Internet * CentOS 8 / REHL 8 Also read  How to install Mysql 8.0.28 on Ubuntu 22.04 LTS   How to install MySQL 5.5 on Ubuntu 20.04 LTS    Install mysql 5.6 ubuntu 20.04 LTS    Install MySQL 8.0 on CentOS 8 / RHEL 8 The default Application Stream repository helps you to install the latest version of

How to grant mysql stored Procedures/Functions permissions - vetechno

Hello reader, In this tutorial post im sharing how to grant MySql stored Procedures/Functions permissions in MySql 8.0.  When we work with functions and procedures, you can grant users to EXECUTE these functions and procedures in MySQL.  Below Im sharing how to give specific stored procedure in the database in MySql 8.0 GRANT EXECUTE ON PROCEDURE `Db_name`.`Procedures or Functions_name` TO `db_username`@`%` ; GRANT EXECUTE ON FUNCTION `Db_name`.`Procedures or Functions_name` TO `db_username`@`%` ;