摘要: <?xml version="1.0" encoding="Windows-1252" ?> <!--// Style name: VS2012 Dark Theme for Notepad++ Author: Sean D. Cline (Sean.D.Cline@gmail.com) Descr 阅读全文
posted @ 2023-06-21 13:47 一个人、一座城 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="Windows-1252" ?> <!--// Style name: VS2012 Dark Theme for Notepad++ Author: Sean D. Cline (Sean.D.Cline@gmail.com) Descr 阅读全文
posted @ 2023-06-21 13:15 一个人、一座城 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、安装svn yum instabll subversion 2、创建版本库目录 mkdir -p /opt/svn 3、创建版本库 svnadmin create /opt/svm/lee 4、修改配置:版本库目录下conf文件夹下 authz:负责帐号权限的的管理,控制账号是否有读写权限 [/ 阅读全文
posted @ 2020-04-27 00:36 一个人、一座城 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 查看是否安装、版本 pip show prettytable 1、安装包 pip install prettytable 2、应用: import prettytable #创建表 table = pt.PrettyTable() #添加表头 table.field_names=["id","nam 阅读全文
posted @ 2020-04-19 14:27 一个人、一座城 阅读(844) 评论(0) 推荐(0) 编辑
摘要: 查看是否安装、版本 pip show pymysql 1、安装 pip install pymysql 2、查询: import pymysql # 连接本地mysql执行sql语句 def ExecuteLocalMysqlSelect(sql): conn = pymysql.connect(h 阅读全文
posted @ 2020-04-19 14:01 一个人、一座城 阅读(657) 评论(0) 推荐(0) 编辑
摘要: 安装准备: 1、SSH 的无密码登录 [所有节点] ssh-keygen -t dsa -P '' [子节点] cp id_dsa.pub authorized_keys chmod 600 authorized_keys scp authorized_keys node02:/root/.ssh/ 阅读全文
posted @ 2020-03-30 11:40 一个人、一座城 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 1、安装目录文件夹themes 将主题放入即可 2、设置-语言格式设置选择放入的主题 推荐主题:VS2012-Dark.xml 下载链接:https://github.com/SeanCline/Npp-VS2012-Dark 阅读全文
posted @ 2020-03-30 10:46 一个人、一座城 阅读(969) 评论(0) 推荐(0) 编辑
摘要: 下载:http://mirrors.hust.edu.cn/apache/ 安装: tar -zxvf sqoop-1.4.7.bin__hadoop-2.6.0.tar.gz 配置: ① 修改 sqoop-env.sh mv sqoop-env-template.sh sqoop-env.sh e 阅读全文
posted @ 2020-03-29 21:56 一个人、一座城 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 修改Mysql的远程访问权限 grant all privileges on *.* to 'root'@'%' identified by 'Brysj12#' with grant option; 阅读全文
posted @ 2020-03-29 21:37 一个人、一座城 阅读(1789) 评论(0) 推荐(0) 编辑
摘要: 1 字符串判断 str1 = str2 当两个串有相同内容、长度时为真str1 != str2 当串str1和str2不等时为真-n str1 当串的长度大于0时为真(串非空)-z str1 当串的长度为0时为真(空串)str1 当串str1为非空时为真 2 数字的判断 int1 -eq int2 阅读全文
posted @ 2020-03-24 13:09 一个人、一座城 阅读(1318) 评论(0) 推荐(0) 编辑