08 2019 档案

摘要:MD5(不可逆),对称,非对称 区别https://blog.csdn.net/wangpeng322/article/details/84106548 AES DES 3DES(DESede) Blowfish DESede就是3DES http://www.voidcn.com/article/ 阅读全文

posted @ 2019-08-27 17:24 橙子j 阅读(553) 评论(0) 推荐(0)

摘要:大学的时候都是对着课本装的,现在突然让用一下子记不起来了,所以总结一下 一、下载解压tomcat(ps你得有个eclipse先) tomcat官网下个安装包:http://tomcat.apache.org/ 安装tomcat,一般按着步骤装就行,不过以防忘了,可以参考:https://blog.c 阅读全文

posted @ 2019-08-19 17:18 橙子j 阅读(4226) 评论(0) 推荐(0)

摘要:一、增删改查(对表内数据) 增:insert into table1(field1,field2) values(value1,value2); 删:delete from table1 where 范围 ; 改:update table1 set field1=value1 where 范围 ; 阅读全文

posted @ 2019-08-19 10:39 橙子j 阅读(286) 评论(0) 推荐(0)

摘要:切换到hdfs用户,或者hive用户 先进入到hive的bin文件里面 cd /usr/hdp/3.1.0.0-78/hive/bin ./hive 最后用sql语句操作 创建表: hive> create table repartition( > id int, > name char(20), 阅读全文

posted @ 2019-08-16 18:07 橙子j 阅读(168) 评论(0) 推荐(0)

摘要:CRC-32在线校验网址:(以下都可以) https://crccalc.com/ http://www.sunshine2k.de/coding/javascript/crc/crc_js.html https://www.lammertbies.nl/comm/info/crc-calculat 阅读全文

posted @ 2019-08-14 09:28 橙子j 阅读(4156) 评论(0) 推荐(0)

摘要:用户相关 useradd xxx:创建用户xxx passwd xxx:设置xxx用户的密码 chown -R xxx /aaa/:分配给xxx用户aaa文件夹的权限 userdel xxx:删除用户xxx groupadd -r xxx:创建群组 groupdel xxx:删除群组 sudo 啥啥 阅读全文

posted @ 2019-08-06 13:13 橙子j 阅读(146) 评论(0) 推荐(0)

摘要:格式:chmod -(代表类型)×××(所有者),×××(组用户),×××(其他用户) 文件名/文件夹名 >用逗号隔开 一般情况 即平时用ls -l看到的权限比如-rwxrwxrwx 三个一组分别对应所有者,组用户,其他用户 比如:chmod u=w,g+rw,o-x 123.txt 然后还可以用数 阅读全文

posted @ 2019-08-02 11:03 橙子j 阅读(150) 评论(0) 推荐(0)