会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
洛阳之晨,譬如临安初雨
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
23
24
25
26
27
28
29
30
31
···
61
下一页
2019年6月16日
linux 组合命令
摘要: 统计home目录下面有多少文件 ls -l /home|grep '^-'|wc -l
阅读全文
posted @ 2019-06-16 15:14 洛晨随风
阅读(651)
评论(0)
推荐(0)
2019年6月9日
linux显示文本文件指定行数的数据
摘要: sed -n '2,4p' /core/home_info.txt 显示这个txt的2-4行,此外还有 cat /core/home_info.txt | tail -n 1000:显示最后1000行 | tail -n +1000:从1000行开始显示,显示1000行以后的 | head -n 1
阅读全文
posted @ 2019-06-09 18:20 洛晨随风
阅读(1974)
评论(0)
推荐(0)
liunx 上无法kill 掉 redis服务
摘要: 要新学习一下redis 的哨兵服务,但是发现启动redis的时候,哨兵服务已经存在了,而且reids6379的服务也杀不死,就找到这样的参考方案 /etc/init.d/redis-server stop 还有 /etc/init.d/redis-sentinel stop 资料:https://b
阅读全文
posted @ 2019-06-09 11:10 洛晨随风
阅读(4218)
评论(0)
推荐(0)
2019年6月8日
vim中 E212:无法打开并写入文件 的解决办法
摘要: 因为centos7刚安装的时候是无法上网的,所以,需要去配置一下ifcfg-ens33文件,但实际上这个文件是只读的文件,root也无法去更改内容,这时候保存的时候需要使用 w ! sudo tee % 命令,问题解决
阅读全文
posted @ 2019-06-08 13:00 洛晨随风
阅读(28635)
评论(0)
推荐(1)
2019年6月6日
xshell链接linux出现SSH服务器拒绝了密码 的解决方案
摘要: 参考文章:https://blog.csdn.net/weixin_38554662/article/details/80589852 但是需要注意的是,ssh_config文件本来是没有权限修改的,在乌班图里面的话需要使用su命令,输入密码后,在输入 chmod 777 文件的地址,修改一下ssh
阅读全文
posted @ 2019-06-06 14:58 洛晨随风
阅读(6084)
评论(0)
推荐(0)
2019年4月11日
规约模式的ef拼接
摘要: 使用:
阅读全文
posted @ 2019-04-11 16:23 洛晨随风
阅读(319)
评论(0)
推荐(0)
Expression拼接
摘要: public static class PBuilder { /// /// 机关函数应用True时:单个AND有效,多个AND有效;单个OR无效,多个OR无效;混应时写在AND后的OR有效 /// /// /// public static Expression> True(...
阅读全文
posted @ 2019-04-11 13:57 洛晨随风
阅读(629)
评论(0)
推荐(0)
2019年4月10日
springmvc jar包下载 提供地址
摘要: 转载:https://blog.csdn.net/qq_31307253/article/details/80622936 spring:http://maven.springframework.org/release/org/springframework/spring/ jackson:http
阅读全文
posted @ 2019-04-10 20:53 洛晨随风
阅读(420)
评论(0)
推荐(0)
2019年4月8日
tomcat 8 startup.bat启动乱码问题
摘要: 修改Tomcat bin目录下startup.bat文件 将call "%EXECUTABLE%" start %CMD_LINE_ARGS% 改为 call "%EXECUTABLE%" run %CMD_LINE_ARGS% 问题截图:
阅读全文
posted @ 2019-04-08 21:42 洛晨随风
阅读(724)
评论(0)
推荐(0)
2019年4月4日
js 对象数组删除和查找的方法
摘要: deleteItem: function (array,item) { const index = this.array.findIndex(text => text.name item.name); this.array.splice(index, 1);} 亲测vue 中可用
阅读全文
posted @ 2019-04-04 09:51 洛晨随风
阅读(9258)
评论(0)
推荐(1)
上一页
1
···
23
24
25
26
27
28
29
30
31
···
61
下一页
公告