码迷,mamicode.com
首页 >  
搜索关键字:local    ( 24769个结果
09 spark连接mysql数据库
1.安装启动检查Mysql服务。netstat -tunlp (3306) 2.spark 连接mysql驱动程序。–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 3.启动 Mysql ...
分类:数据库   时间:2021-06-06 19:08:48    阅读次数:0
爬虫_10-20
0x01--新发地菜价 #!/usr/local/bin/python3.6 # -*- encoding=utf-8 -*- """ @coder: diygou @since: 2021/6/5下午6:33 """ import requests from bs4 import Beautifu ...
分类:其他好文   时间:2021-06-06 18:49:24    阅读次数:0
Win10注册表相关配置
1.修改服务对应的文件路径 第一步:快捷键 Win+ R 呼出运行,输入regedit 回车打开注册表 第二步: 依此点击 HKEY_LOCAL_MACHINE >> SYSTEM >> CurrentControlSet >> Services 第三步: 输入法切换为英文 点击 Services ...
分类:Windows程序   时间:2021-06-06 18:48:56    阅读次数:0
🍖Flask自定义 local 对象 (实现并发处理请求)
自定义 local 对象 (实现并发处理请求) 1.思考及需求 要实现并发效果, 每一个请求进来的时候我们都开启一个进程, 这显然是不合理的, 于是就可以使用线程 如果我们的需求是每个线程都对变量 num 进行设值, 并打印其线程号, 其效果如下 : from threading import Th ...
分类:其他好文   时间:2021-06-05 17:52:29    阅读次数:0
yum安装8.0mysql数据库
###yum安装依赖包 yum -y install libaio ###下载mysql_8.x版本rpm包 wget http://repo.mysql.com/mysql80-community-release-el7-1.noarch.rpm ###安装mysql_yum源 yum local ...
分类:数据库   时间:2021-06-04 19:54:22    阅读次数:0
android编译: Path is not a readable directory
Path '\react-native-safe-area-context\android\build\intermediates\compiled_local_resources\debug\out' is not a readable directory. 解决: 按照目录手动新建文件夹 ...
分类:移动开发   时间:2021-06-04 19:43:18    阅读次数:0
centos 安装composer
1、使用命令下载 curl -sS https://getcomposer.org/installer | php 2.下载之后设置环境变量 mv composer.phar /usr/local/bin/composer 3.修改权限,否则执行会出错 chmod -R 777 /usr/local ...
分类:其他好文   时间:2021-06-03 18:05:24    阅读次数:0
GORM操作MySQL数据库-连接数据库以及对表的操作
一、连接数据库: dsn := "root:123456@tcp(127.0.0.1:3306)/more?charset=utf8mb4&parseTime=True&loc=Local" db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{}) ...
分类:数据库   时间:2021-06-03 17:50:45    阅读次数:0
linux下安装mysql
#CentOS7的yum源中默认好像是没有mysql 1.1 下载mysql的repo源 cd /usr/local wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 1.2 安装mysql-community-r ...
分类:数据库   时间:2021-06-03 17:43:34    阅读次数:0
shell script
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:系统相关   时间:2021-06-02 20:19:59    阅读次数:0
24769条   上一页 1 ... 6 7 8 9 10 ... 2477 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!