06 2017 档案

摘要:centos7 开启端口 开启端口 firewall cmd zone=public add port=80/tcp permanent 命令含义: zone 作用域 add port=80/tcp 添加端口,格式为:端口/通讯协议 permanent 永久生效,没有此参数重启后失效 开启之后需要重 阅读全文
posted @ 2017-06-24 16:11 青柚 阅读(178) 评论(0) 推荐(0)
摘要:___ 1,检查是否安装 telnet server和xinetd rpm qa telnet server rpm qa xinetd ___ 2,如果没有安装过就安装 查找yum yum list |grep telnet yum list |grep xinetd ___ 3,执行安装语句 y 阅读全文
posted @ 2017-06-24 13:48 青柚 阅读(1229) 评论(0) 推荐(0)
摘要:代码 "; //循环打印数据 while ($row = mysqli_fetch_assoc($result)) { echo "{$row['id']}{$row['name']}"; } echo ""; mysqli_free_result($result); mysqli_close($c 阅读全文
posted @ 2017-06-11 16:26 青柚 阅读(197) 评论(0) 推荐(0)
摘要:Git的使用 git pull 出现如下错误: There is no tracking information for the current branch. Please specify which branch you want to merge with. If you wish to se 阅读全文
posted @ 2017-06-02 21:51 青柚 阅读(4547) 评论(0) 推荐(0)