Search
 
SCRIPT & CODE EXAMPLE
 

PHP

ubuntu 20 phpmyadmin install

sudo apt update && sudo apt install phpmyadmin php-mbstring
Comment

install mysql phpmyadmin ubuntu 20.04

sudo apt install mysql-server && sudo apt install mysql-client
sudo apt update && sudo apt install phpmyadmin php-mbstring

// abort installation

sudo mysql or mysql -u root -p // root first
mysql > UNINSTALL COMPONENT "file://component_validate_password";
mysql > exit

sudo apt install phpmyadmin
sudo mysql
mysql > INSTALL COMPONENT "file://component_validate_password";
mysql > exit
sudo phpenmod mbstring
sudo systemctl restart apache2

// Customizing User Authentication and Privilege
sudo mysql
mysql > SELECT user,authentication_string,plugin,host FROM mysql.user;
mysql > ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';

// Configuring Password Access for Dedicated MySQL Users
mysql > CREATE USER 'sammy'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';
// or
mysql > ALTER USER 'sammy'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
mysql > GRANT ALL PRIVILEGES ON *.* TO 'sammy'@'localhost' WITH GRANT OPTION;
mysql > exit
Comment

PREVIOUS NEXT
Code Example
Php :: pre_r 
Php :: php exit foreach 
Php :: php array to console 
Php :: group by laravel 
Php :: php create temporary file 
Php :: Fatal error: Maximum execution time of 120 seconds exceeded in 
Php :: laravel number add 0 before 
Php :: array empty check in php 
Php :: how to split url in php 
Php :: laravel transactions 
Php :: php redirect if not logged in 
Php :: python truncate file contents 
Php :: check if date between two dates laravel eloquent 
Php :: header location php 
Php :: php get string before character 
Php :: group routes in laravel 
Php :: php header 500 
Php :: Find out how many years there are in php between years 
Php :: allert in php 
Php :: excerpt length wordpress 
Php :: laravel helper function for check string is exist in another string 
Php :: php strtotime 
Php :: Changer le logo Admin WordPress 
Php :: wp_query limit 1 
Php :: how make exception laravel if operation does not work 
Php :: composer_memory_limit 
Php :: wordpress search code 
Php :: do shortcode wordpress 
Php :: how to delete image from floder in laravel 
Php :: phpmailer for wordpress 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =