Saturday, May 29, 2021

Disaster Recovery Planning and Business Continuity Planning | Webinar | ...


Skynetclouds is a managed multi cloud service provider having experienced cloud professionals from AWS, Azure, Google Cloud and Oracle Cloud. 

As per ISO 27001, Information Security Management Systems – Disaster Recovery and BCP are one of the main topics. In this digital era, we should be well equipped to face any disaster and as business owners, we should focus more on the mitigation plans. As you know we can’t control the occurrence of this disaster, but we can plan and implement a good recovery plan.

Different types of disasters are:

Operational failures
  • Power failures
  • IT hardware failures
  • N/W failures
  • Software failures

Natural Disasters
  • Flood
  • Storm
  • Earthquakes

Human-caused Events
  • Human error
  • Malicious insider
  • Unknowing errors
RTO = Recovery Time Objective (How quickly can my application be running again?)
RPO = Recovery Point Objective (How many transactions can I stand to lose?)

  • Managed Cloud Service Provider
  • Cloud Architects who are certified in Azure, AWS, GCP & Oracle
  • 24/7 * 365 Availability
  • DevOps as Service
  • Focused on Security, Cost Deduction and Automation



Tuesday, May 11, 2021

authentication plugin caching_sha2_password is not supported

 Getting the below error message when you connect to mysql8

authentication plugin caching_sha2_password is not supported

In MySQL 8.0, caching_sha2_password is the default authentication plugin rather than mysql_native_password.

Login to Mysql as root

Check whether the mysql user plugin is mysql_native_password or caching_sha2_password

select Host,User,plugin from mysql.user;

If its caching_sha2_password, change to mysql_native_password

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '{Password}';

RESTART MYSQL SERVICE.

Try now!