本文所指之数据工程,限定于: 数据分析、数据采集(集成) 1 网站 spider-flow - 智能高效的在线爬虫 spider-flow 是一个无需写代码的爬虫平台,以图形化方式定义爬虫流程,无需代码即可实现一个爬虫 superset.workerindata.com - 账号: bilibili ...
分类:
数据库 时间:
2021-06-11 18:27:40
阅读次数:
0
一、添加maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 二、applicati ...
分类:
编程语言 时间:
2021-06-11 18:20:30
阅读次数:
0
宝塔是一款Linux可视化软件 1.一键安装 apt-get install wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh 2.卸载 1)打开shell终端,输入命 ...
分类:
系统相关 时间:
2021-06-11 18:10:52
阅读次数:
0
一个新的需求,需要在shell脚本中退出当前登录用户 方式一 #!/bin/bash I=$(tty |awk -F '/dev/' '{print $2}') pkill -kill -t $I 方式二 #!/bin/bash I=$(who am i|awk '{print $2}') pkil ...
分类:
系统相关 时间:
2021-06-11 17:45:51
阅读次数:
0
一,打开xshell,连接上 输入指令:mysql -h 192.168.10.120 -u root -p 回车,-h后面是数据库hostname,-u后面是数据库用户名,-p后面是密码 1 root@VM-0-12-centos[14:05:47]:~ 2 $ mysql -h ** -u ** ...
分类:
数据库 时间:
2021-06-10 18:40:18
阅读次数:
0
只是简单测试使用的话,在系统上操作就行,tina默认使用 procd-init 并在其中集成了喂狗功能,所以要先关了自带的喂狗功能。 先让procd停止喂狗: ubus call system watchdog '{"magicclose": true}' ubus call system watc ...
分类:
系统相关 时间:
2021-06-10 18:29:23
阅读次数:
0
#!/bin/bash# 设置mysql的登录用户名和密码(根据实际情况填写)mysql_user="root"mysql_password="skyland"mysql_host="10.230.130.10"mysql_port="3306"mysql_charset="utf8mb4" # 备 ...
分类:
数据库 时间:
2021-06-10 17:38:08
阅读次数:
0
你是否想学编程,但不知道学什么? 害,我刚接触编程时就这心态,根本不知道编程是什么!那些从网上和书上看到,编程相关的只言片语和技术名词,它们就像是一个个奢侈品的牌子,听起来就很高大上,而我仅仅只知道它们很“贵”,除此之外就一概不知了... 可能正因为编程听起来“很先进”,所以我才十分想学,蛋却不知从 ...
分类:
其他好文 时间:
2021-06-09 10:41:27
阅读次数:
0
一、记录 1. 实时监控网卡流量脚本:https://www.kafan.cn/edu/5611612.html awk 'BEGIN{ OFMT="%.3f"; devf="/proc/net/dev"; while(("cat "devf) | getline) { if($0 ~ /:/ && ...
分类:
系统相关 时间:
2021-06-08 23:46:04
阅读次数:
0
#!/bin/bash#echo "vm.swappiness = 0">> /etc/sysctl.confswapoff -a && swapon -asysctl -psystemctl stop firewalld.servicesystemctl disable firewalld.ser ...
分类:
数据库 时间:
2021-06-08 23:43:55
阅读次数:
0