打开Linux终端,进入root权限,用vim打开MySQL的配置文件
vim /etc/mysql/mysql.conf.d/mysqld.cnf将bind-address的值改为0.0.0.0 进入MySQL
mysql -u root -p
将root用户改为允许远程登录
update user set host % where user root;
创建用户
CRE…
计算机软件能力认证考试系统 #include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <unordered_map>
#include <string>using namespace std;typedef long long LL;const int N 2510, M 510;int n…