上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: 近期遇到一个非常奇怪的问题,也不知道改了什么,tomcat启动非常慢,以前几秒就启动好了,现在要30秒左右。 而且,通过jdbc连接oracle数据库也非常慢,以前建立一个连接只要几十毫秒,现在也要10秒左右。 折腾了好几天,终于解决了,记录下来,帮助大家少走弯路。 遇到这个问题时,最初以为是ran 阅读全文
posted @ 2019-11-19 19:37 卡卡西村长 阅读(2598) 评论(1) 推荐(1)
摘要: HTTP 400 – 请求无效HTTP 401.1 – 未授权:登录失败HTTP 401.2 – 未授权:服务器配置问题导致登录失败HTTP 401.3 – ACL 禁止访问资源HTTP 401.4 – 未授权:授权被筛选器拒绝HTTP 401.5 – 未授权:ISAPI 或 CGI 授权失败 HT 阅读全文
posted @ 2019-11-12 16:03 卡卡西村长 阅读(6607) 评论(0) 推荐(0)
摘要: 更改配置文件vi /etc/ssh/sshd_config找到UseDNS 将UseDNS前面的#删除,并将YES改为NO,若找不到UseDNS,则手动添加UseDNS,并将其设置成No保存并重启ssh:systemctl restart sshd 阅读全文
posted @ 2019-11-12 09:49 卡卡西村长 阅读(689) 评论(0) 推荐(0)
摘要: 写一个sh文件: 保存成ping.sh,赋可执行权限: chmod +x ping.sh 执行: sh ./ping.sh 192.168.1.6 > ./1.log 在后台执行: nohup sh ./ping.sh 192.168.1.6 > ./1.log & 阅读全文
posted @ 2019-10-21 21:02 卡卡西村长 阅读(1029) 评论(0) 推荐(0)
摘要: 虚拟机分配磁盘40GB,实际系统分区只用了20GB,需要手工扩展到40GB,操作方法如下: 查看磁盘信息(确认主分区只有17GB):[root@test-web1 ~]# df -hFilesystem Size Used Avail Use% Mounted on/dev/mapper/cento 阅读全文
posted @ 2019-09-18 14:39 卡卡西村长 阅读(675) 评论(0) 推荐(0)
摘要: https://www.vertica.com/kb/Reading-Query-Plans/Content/BestPractices/Reading-Query-Plans.htm 阅读全文
posted @ 2019-09-05 17:17 卡卡西村长 阅读(368) 评论(0) 推荐(0)
摘要: rm -f /etc/yum.repos.d/* wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo wget -O /etc/yum.repos.d/epel-7.repo h 阅读全文
posted @ 2019-08-08 11:01 卡卡西村长 阅读(286) 评论(0) 推荐(0)
摘要: 转自 http://storage.it168.com/h/2007-06-28/200706281204046_3.shtml 存储是目前IT产业发展的一大热点,而RAID技术是构造高性能、海量存储的基础技术,也是构建网络存储的基础技术。专家认为,磁盘阵列的性能优势得益于磁盘运行的并行性,提高设备 阅读全文
posted @ 2019-07-31 18:25 卡卡西村长 阅读(508) 评论(0) 推荐(0)
摘要: 中位数函数:MEDIAN 使用表达式:MEDIAN ( expression ) OVER ( [ window‑partition‑clause ] ) 准备测试数据: 最简单的用法: 可以按照指定字段分组,显示所在分组的中位数,如下: 官方文档: https://www.vertica.com/ 阅读全文
posted @ 2019-07-30 17:11 卡卡西村长 阅读(788) 评论(0) 推荐(0)
摘要: 1、创建用户,并设置密码: create user user1 identified by 'pwd1'; 2、把角色授权给用户(dbduser是普通角色): grant dbduser to user1; 3、把用户模式授权给用户:grant usage on schema schema1 to 阅读全文
posted @ 2019-07-29 11:25 卡卡西村长 阅读(1347) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页