Selasa, 03 Agustus 2021

How to Change MySQL Root Password in Ubuntu 20.04

 

How to Change MySQL Root Password in Ubuntu 20.04

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.

Before getting straight to the solution, it is assumed that you are using the latest version of the MySQL database on Ubuntu 20.04 LTS system. This post will provide a step-by-step guide on how to change MySQL root password in Ubuntu 20.04. So, without wasting any time, let’s start.

Step 1: Check the version of MySQL on Ubuntu 20.04

First of all, check the version of your MySQL because this post contains the solution of changing the root password on version 8 or higher. If the version of your MySQL is lower than 8, then the solution will be different. The command for checking the version of MySQL is given below.

MY LATEST VIDEOS

00:00 of 07:34Volume 0%
00:29
12:57
 
Next
Stay
mysql --version

Step 2: Stop the MySQL server

To change the MySQL root password, you first need to shut down the MySQL server, and you can do so using the command:

sudo systemctl stop mysql.service

Check the status of the MySQL server to verify using the command:

sudo systemctl status mysql.service

Step 3: Skip Grant Tables & Networking

To start the MySQL server without granting the tables and networking check, set the environment variable MYSQLD_OPTS which MySQL uses on startup.

sudo systemctl set-environment MYSQLD_OPTS="--skip-networking --skip-grant-tables"

Alright, the environment variable is set, and we can login to the MySQL shell without providing any password.

Step 4: Start the MySQL service

After setting the environment variable MYSQLD_OPTS, start the MySQL service now using the command:

sudo systemctl start mysql.service

Step 5: Confirm the status of the MySQL Server

Confirm the status of the MySQL service, either it is running or not:

sudo systemctl status mysql.service

Step 6: Sign In to the MySQL shell

Now, you need to login as a root user to the MySQL server and for signing in to the MySQL shell, type the command:

sudo mysql -u root

Without providing any password, you will log in to the MySQL shell.

Step 7: Alter the root password

Now, flush the privileges first.

mysql> flush privileges;

Select the MySQL database.

mysql> USE mysql

And set the new password for the root user using the Alter command by typing the following statement.

mysql> ALTER USER  'root'@'localhost' IDENTIFIED BY 'the-new-password';

At the place of “the-new-password” provide your new password. After successfully changing the MySQL root password, log out from the MySQL shell.

mysql> quit;

Step 8: Kill all MySQL processes & Restart the MySQL service

First of all, kill all the processes of MySQL before even restarting the MySQL server.

sudo killall -u mysql

After having the output as shown in the picture, hit “Enter” and restart the MySQL server using the command given below.

sudo systemctl restart mysql.service

Step 9: Log in with newly set Password

Now, Log in to the MySQL shell with the newly set password.

sudo mysql -u root -p

Provide the recently set password in the ALTER command.

This is it. MySQL’s root password is successfully changed, and you are logged back into the MySQL shell.

Wrap Up

In this step-by-step guide, you have learned to change the MySQL root password on the Ubuntu 20.04 LTS system. This post contains a profound and easy-to-understand solution on reset the root password of MySQL on Ubuntu 20.04.

Sumber : https://linuxhint.com/change-mysql-root-password-ubuntu/

Selasa, 07 April 2015

Konfigurasikan XAMPP 1.7.7 dengan Oracle 11G

Dalam kesempatan kali ini saya ingin membagikan cara untuk mengkonfigurasikan XAMPP 1.7.7 dengan Oracle 11G. Caranya cukup sederhana yaitu dengan merubah beberapa baris pada file php.ini yang ada pada XAMPP. Untuk lebih jelasnya, perhatikan langkah berikut :

  1. Cari File php.ini pada xampp/php/php.ini
  2. Buka file tersebut dan cari dll untuk oci8, perhatikan gambar dibawah ini.
Kemudian cari file oci.dll pada direktori Oracle anda, lokasinya di BIN dan copy file tersebut ke xampp/apache/bin.
Setelah itu start kembali xampp anda dan cek di php_info(), jika oci sudah muncul maka sudah dapat dijalankan. Jika pada saat menjalankan muncul error  Failed to load OCI DLL pada XAMPP 1.7.7 coba tutorial berikut ini : http://hendrasetyo.blogspot.com/2013/08/mengatasi-error-message-failed-to-load.html
SUMBER :
http://hendrasetyo.blogspot.com/2013/08/konfigurasi-xampp-177-untuk-koneksi.html