上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: word execl ppt等软件使用过程中的字体选择 汉字 建议选择 华文楷体 英文 建议选择 微软雅黑 或者 times new roman 阅读全文
posted @ 2019-03-14 13:38 邓旭阳 阅读(320) 评论(0) 推荐(0)
摘要: ./rke up报错如下:panic: runtime error: slice bounds out of range [recovered] panic: runtime error: slice bounds out of range解决办法:重新修改了cluster.yml文件 ./rke 阅读全文
posted @ 2019-03-08 18:13 邓旭阳 阅读(3804) 评论(0) 推荐(0)
摘要: excel两列比对 =IF(D1=C1,"相同","不同") 阅读全文
posted @ 2019-02-19 16:09 邓旭阳 阅读(148) 评论(0) 推荐(0)
摘要: 多列合并成一列,并且中间添加符号 =C1&"-"&D1&"-"&E1&"-"&F1&"-"&G1 阅读全文
posted @ 2019-02-19 16:08 邓旭阳 阅读(4250) 评论(0) 推荐(1)
摘要: python2.7 过渡版本(因为python3不兼容python2),没有2.8,而且2.7仅支持到2020年。希望使用3.5以上。 字符串常用功能 移除空白 name = " dengyong " print(name) print(name.strip()) #可以脱掉空格,TAB,回车 分割 阅读全文
posted @ 2018-10-25 17:14 邓旭阳 阅读(165) 评论(0) 推荐(0)
摘要: mysql 易百教程 https://www.yiibai.com/mysql/text.html 阅读全文
posted @ 2018-10-10 17:34 邓旭阳 阅读(202) 评论(0) 推荐(0)
摘要: 查看Linux开机时间/重启时间1. who 命令查看 who -b 查看最后一次系统启动的时间。 who -r 查看当前系统运行时间 [root@idc01-as-web-00 ~]# who -b system boot 2018-06-16 04:23 2.last reboot [root@ 阅读全文
posted @ 2018-06-17 12:10 邓旭阳 阅读(936) 评论(0) 推荐(0)
摘要: nginx--之故障排查 1 ping 10.20.10.284 #验证服务器是否存活 2 telnet 10.20.10.284 80 #验证80端口是否存活 3 服务器本地 curl 10.20.10.284 #验证web服务是否正常,如果是post请求,就要加-X参数 4 看访问日志,错误日志 阅读全文
posted @ 2018-05-31 08:33 邓旭阳 阅读(231) 评论(0) 推荐(0)
摘要: nginx--之状态信息主机 , nginx_status.conf 配置文件如下:server { listen 80; server_name 127.0.0.1; location ~ /ngx_status { stub_status on; access_log off; allow 12 阅读全文
posted @ 2018-05-31 08:08 邓旭阳 阅读(190) 评论(0) 推荐(0)
摘要: nginx--之日志分割这里说两种方法:第一种:写一脚本每天凌晨重命名并加载/bin/mv www_access.log www_access_$(date +%F -d -1day).log/data/server/nginx/sbin/nginx -s reload 第二种:每天凌晨重命名并传信 阅读全文
posted @ 2018-05-30 10:40 邓旭阳 阅读(105) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页