摘要:
一、硬件 1.查看宿主机ip cmd命令:ipconfig 无线局域网适配器 WLAN: 连接特定的 DNS 后缀 . . . . . . . : IPv6 地址 . . . . . . . . . . . . : 保密 本地链接 IPv6 地址. . . . . . . . : fe80::f08 阅读全文
摘要:
一、硬件 1.为虚拟机添加网卡 2.配置网卡 二、软件 3.获取mac地址 命令:ip link [root@vbox network-scripts]# ip link 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKN 阅读全文
摘要:
2025-03-05 Scala官网下载恢复 官方网站:https://www.scala-lang.org/download/all.html 镜像网站:https://distfiles.macports.org/ 2025-02-22 Scala官网下载链接失效 原文链接:【Scala】镜像网 阅读全文
摘要:
[root@master ~]# sqoop import --connect jdbc:mysql://localhost/hadoopguide --table widgets -m 1 --username hadoopguide --password 'H@doopgu1de' Warnin 阅读全文
摘要:
1.创建用户 create user 'hadoopguide'@'%' identified by 'H@doopgu1de'; create user 'hadoopguide'@'localhost' identified by 'H@doopgu1de'; 2.给予权限 GRANT ALL 阅读全文
摘要:
导出 Windows: mysqldump -uroot -p hadoopguide>C:\Users\Public\Desktop\hadoopguide.sql 头部添加: create database if not exists hadoopguide; use hadoopguide; 阅读全文
摘要:
[root@master ~]# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version 阅读全文
摘要:
表的可能达到的最大大小: MAX_ROWS * AVG_ROW_LENGTH [root@master ~]# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your 阅读全文
摘要:
C:\Users\Administrator>mysql -uroot -p Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Ser 阅读全文
摘要:
提交读 准备工作: create database test; drop table test.read_committed; create table test.read_committed(number int, text varchar(15)); 1.更改隔离级别 窗口一: set sess 阅读全文