1.打开mysql配置文件vim /etc/mysql/mysql.conf.d/mysqld.cnf 将bind-address = 127.0.0.1注销 2.重启ubuntu数据库 3.将root用户授权给所以连接:grant all privileges on *.* to 'root'@'%' identified by 'xxxxxx'; 最后一个为mysql密码4.让权限立即生效:flush privileges; 5.如果本机与ubuntu16.04 pin…
背景 CentOS7.6最小化安装,没有网线,幸好有无线网卡.下面我们直接进入主题. 附:安装教程 主题--连接无线网络 最小化安装后,裸机没有ifconfig,没有iw,最可怕的是没有网线 但我们有无线网卡(因为我这里已经连上WIFI了,所以有IP地址).一般无线网卡以w开头.使用 ip addr 命令查看网卡编号即红框中的字母,我的是wlp3s0. ip link set wlp3s0 up # 打开无线网的驱动 ** ip link show wlp3s0** # 查看该网络接…