मैं mysqli_connect
एक MySQL डेटाबेस में प्रवेश के लिए php का उपयोग कर रहा हूं (सभी स्थानीयहोस्ट पर)
<?php
//DEFINE ('DB_USER', 'user2');
//DEFINE ('DB_PASSWORD', 'pass2');
DEFINE ('DB_USER', 'user1');
DEFINE ('DB_PASSWORD', 'pass1');
DEFINE ('DB_HOST', '127.0.0.1');
DEFINE ('DB_NAME', 'dbname');
$dbc = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
if(!$dbc){
die('error connecting to database');
}
?>
MySQL सर्वर आईएनआई फ़ाइल:
[mysqld]
# The default authentication plugin to be used when connecting to the server
default_authentication_plugin=caching_sha2_password
#default_authentication_plugin=mysql_native_password
साथ caching_sha2_password
MySQL सर्वर INI फ़ाइल में, यह सब पर user1 या user2 के साथ प्रवेश करना संभव नहीं है;
त्रुटि: mysqli_connect (): सर्वर ने क्लाइंट के लिए अज्ञात तरीके से प्रमाणीकरण विधि का अनुरोध किया [caching_sha2_pass] में ...
साथ mysql_native_password
MySQL सर्वर INI फ़ाइल में, यह user1 के साथ लॉगिन करने के लिए संभव है, लेकिन user2, एक ही त्रुटि के साथ;
मैं caching_sha2_password
mySql सर्वर पर कैसे लॉगिन कर सकता हूं ?
mysqli
।