会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lishidefengchen
首页
新随笔
管理
上一页
1
···
25
26
27
28
29
30
31
32
33
···
52
下一页
2019年4月11日
Docker 查看容器环境变量
摘要: #linux指令# printenv
阅读全文
posted @ 2019-04-11 10:46 lishidefengchen
阅读(4625)
评论(0)
推荐(0)
2019年4月10日
angular model-dialog 关闭按钮
摘要: <button class="close" data-dismiss="modal" type="button" aria-label="Close" (click)="close()">×</button>
阅读全文
posted @ 2019-04-10 17:14 lishidefengchen
阅读(594)
评论(0)
推荐(1)
Linux 未安装vi如何编辑文件
摘要: sed -i "s/搜索内容/替换内容/g" 文件名
阅读全文
posted @ 2019-04-10 17:13 lishidefengchen
阅读(1372)
评论(0)
推荐(0)
python交互控制台清屏
摘要: import os t = os.system('clear')
阅读全文
posted @ 2019-04-10 10:02 lishidefengchen
阅读(1012)
评论(0)
推荐(0)
2019年4月8日
docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled (Client.Timeout exceeded while awaiting headers).
摘要: docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled (Client.Timeout exceeded while awaiting headers).
阅读全文
posted @ 2019-04-08 17:15 lishidefengchen
阅读(3742)
评论(0)
推荐(0)
docker load error: open /var/lib/docker/tmp/docker-import-347673752/bin/json: no such file or directory
摘要: docker save 对应 docker load docker export 对应 docker import 在导出的包的环境中的docker版本跟需要导入的环境中的docker版本不一致也可能导致这个原因
阅读全文
posted @ 2019-04-08 15:20 lishidefengchen
阅读(2850)
评论(0)
推荐(1)
redis设置允许远程连接
摘要: #redis默认只允许本地访问# #根据自己的配置文件启动,linux环境下同理# #远程访问的话需要设置配置文件,在redis安装根目录下xxx.config# #修改三个地方# 地址绑定 保护模式 密码 #注意事项# 参数前面不能有空格,这个是我踩过的一个坑
阅读全文
posted @ 2019-04-08 10:27 lishidefengchen
阅读(4247)
评论(0)
推荐(0)
2019年4月4日
redis 连接字符串,设置密码
摘要: <add name="Abp.Redis.Cache" connectionString="127.0.0.1:6379,password=123456"/> 参考:https://github.com/StackExchange/StackExchange.Redis/blob/master/Do
阅读全文
posted @ 2019-04-04 17:59 lishidefengchen
阅读(7665)
评论(0)
推荐(1)
abp + angular 项目 图标字体注意事项
摘要: 用的字体建议下载到本地,否则部署环境没有网络的话,则图片字体会不正常显示。
阅读全文
posted @ 2019-04-04 11:19 lishidefengchen
阅读(387)
评论(0)
推荐(0)
abp + angular 前端使用 hash ,登录界面不跳转问题
摘要: abp 项目默认的路由没有使用hash,这会导致手动刷新浏览器时,页面404错误; 解决方法网上很多,就是在路由里添加一个{useHash: true},就行了。 #用Hash带来的新问题# abp框架,用hash后,发现登录界面不跳转; 调试跟踪后,发现我们需要在它的登录服务里再单独处理一下这中h
阅读全文
posted @ 2019-04-04 10:13 lishidefengchen
阅读(1029)
评论(0)
推荐(0)
2019年4月3日
abp 后台项目在IIS 中运行
摘要: 安装 Current .NET Core Hosting Bundle installer (direct download)
阅读全文
posted @ 2019-04-03 17:13 lishidefengchen
阅读(456)
评论(0)
推荐(0)
2019年3月28日
cmder 常用快捷键
摘要: 双Tab,用于补全 Ctrl+T,建立新页 Ctrl+W,关闭标签页 Ctrl+Tab,切换标签页 Alt+F4,关闭所有标签页 Ctrl+1,切换到第一个页签,Ctrl+2同理 Alt + enter,切换到全屏状态
阅读全文
posted @ 2019-03-28 17:34 lishidefengchen
阅读(3249)
评论(0)
推荐(1)
CentOS7安装RabbitMQ
摘要: https://www.cnblogs.com/uptothesky/p/6094357.html
阅读全文
posted @ 2019-03-28 11:54 lishidefengchen
阅读(94)
评论(0)
推荐(0)
linux 检测服务器端口工具
摘要: #nmp# #netstat# #telnet# 服务器端口即使处于监听状态,但是防火墙iptables屏蔽了该端口,是无法通过该方法检测端口是否开放 #屏蔽与关闭# 对应服务器开启,一般端口就开启了,不能访问,可能是由于防火墙的限制,导致端口被屏蔽了。
阅读全文
posted @ 2019-03-28 10:38 lishidefengchen
阅读(1305)
评论(0)
推荐(0)
一款不错的Linux终端颜色设置
摘要: PS1="\[\e[37;40m\][\[\e[32;40m\]\u\[\e[37;40m\]@\h \[\e[36;40m\]\w\[\e[0m\]]\\$ " #步骤#vi .bash_profile末尾追加配置:wq 保存退出source .bash_profile#效果如下#
阅读全文
posted @ 2019-03-28 10:21 lishidefengchen
阅读(1008)
评论(0)
推荐(0)
上一页
1
···
25
26
27
28
29
30
31
32
33
···
52
下一页
公告