greenZ

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2020年10月24日

摘要: https://www.oracle.com/index.html 阅读全文
posted @ 2020-10-24 14:06 绿Z 阅读(297) 评论(0) 推荐(0) 编辑

摘要: MySQL 8.0参考手册https://dev.mysql.com/doc/refman/8.0/en/ MySQL 8.0参考手册 / INFORMATION_SCHEMA表https://dev.mysql.com/doc/refman/8.0/en/information-schema.ht 阅读全文
posted @ 2020-10-24 12:59 绿Z 阅读(910) 评论(0) 推荐(0) 编辑

2019年9月19日

摘要: 【oracle】处理oracle用户密码中的特殊字符$和@ 1.创建测试用户 create user testdb identified by "testdb@"; grant connect,resource to testdb; grant unlimited tablespace,create 阅读全文
posted @ 2019-09-19 15:53 绿Z 阅读(3232) 评论(0) 推荐(0) 编辑

2019年3月13日

摘要: 【shell】整数运算,小数运算 1.整数运算 【demo01】expr typeset x=10 typeset y=2 n1=`expr $x + $y` n2=`expr $x - $y` n3=`expr $x \* $y` #使用expr时 符号* 需要转义 n4=`expr $x / $ 阅读全文
posted @ 2019-03-13 17:02 绿Z 阅读(3991) 评论(0) 推荐(0) 编辑

2019年3月5日

摘要: 【oracle】【demo】sqlldr --建表 create table t_student ( id integer, name varchar2(64), age int ); desc t_student; --查看数据库服务端字符集 select * from v$nls_paramet 阅读全文
posted @ 2019-03-05 17:26 绿Z 阅读(386) 评论(0) 推荐(0) 编辑

2019年3月4日

摘要: 设置时钟 date MMddhhmmyyyy.ss 例如,date 102110482013.00 #Mon Oct 21 10:48:00 wet 2013 同步到硬件时钟 hwclock -w 查看系统时间 date date -u 阅读全文
posted @ 2019-03-04 17:30 绿Z 阅读(174) 评论(0) 推荐(0) 编辑

摘要: 修改主机名 vi /etc/hosts /etc/rc.d/boot.localnet restart /etc/init.d/network restart /etc/init.d/ncsd restart vi /etc/HOSTNAME 设置网卡地址 ifconfig ifconfig -a 阅读全文
posted @ 2019-03-04 17:29 绿Z 阅读(791) 评论(0) 推荐(0) 编辑

摘要: 【修改ssh认证文件路径】 /etc/ssh/sshd_config 修改AuthorizedKeysFile ./ssh/authoried_keys 为 AuthorizedKeysFile /etc/ssh/auth_key/%u/authoried_keys 重启sshd /etc/init 阅读全文
posted @ 2019-03-04 17:27 绿Z 阅读(2811) 评论(0) 推荐(0) 编辑

2019年2月18日

摘要: 【hadoop】【demo】HBase shell 1.创建 用户test_super(有supergroup权限),test_guest(无supergroup权限) 2.连接用户 test_super 并创建表 't_student' kinit test_super hbase shell w 阅读全文
posted @ 2019-02-18 16:58 绿Z 阅读(244) 评论(0) 推荐(0) 编辑

摘要: 查看HDFS文件系统: 1.安装FI客户端 2.连接hadoop用户 3.执行hdfs命令 hadoop fs -help hadoop fs -ls / hadoop fs -ls /user 阅读全文
posted @ 2019-02-18 16:14 绿Z 阅读(142) 评论(0) 推荐(0) 编辑