- 浏览: 22357 次
- 性别:
- 来自: 武汉
最新评论
文章列表
1.使用yum安装vsftpd软件
~># sudo yum install ftp vsftpd libdb4 libdb4-utils
2.设置vsftpd开机启动
~># sudo systemctl enable vsftpd.service
~># sudo systemctl start vsftpd.service
~># sudo systemctl status vsftpd.service
3.修改vsftpd.conf文件(VsFTP匿名准许用户上传)
~># sudo touch vuser.txt
~> ...
命令: cat /var/log/mysqld.log | grep "temporary password"
一、引入bootstrap、bootstrap-treeview相关文件;
二、HTML代码
<div>
<div id="tree" style="color: #999; font-size: 14px;"></div>
<div>
<button type="button" class="btn btn-success" id="btn-check-all">Check All</ ...
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>一个纯纯的WegGL小例子</title>
</head>
<body>
<canvas id="myCanvas" width="600" height="450"></canvas>
<script> ...
按照text-overflow: ellipsis;使用规则,在标签样式中添加该属性未生效,例如:
写道
.text { text-overflow: ellipsis;}<div class="text">长文字长文字长文字长文字长文字长文字长文字长文字长文字长文字长文字长文字长文字长文字</div>
之后,发现并没有达到我们想要的预期效果,其实还需要另外2个CSS属性的支持:
写道
.text {text-overflow: ellipsis;white-space: nowrap; overflow: ...
在使用angular.fromJson将字符串转换为JSON中,遇到一个bug,就是会出现对象某些属性undefined的情况,但其实这些属性是有值的,先上结果:
说明:
1.createCase.js: 496-->console.log(data.disease_info);打印字符原文;
2.createCase.js: 498-->console.log(angular.fromJson(data.disease_info));打印转换的JSON,发现disease_id属性未能正常转换,目前不知道原因。
...
网上找了好多文章,关于CentOS7的防火墙配置和使用,都没有比较理想的说明firewalld的用法,还有一些网上摒弃centos7 firewalld防火墙,使用旧版本的iptables的替代的做法,这里笔者非常不赞同其再使用iptables。
CentOS7使用的是Linux Kernel 3.10.0的内核版本,新版的Kernel内核已经有了防火墙netfilter,并且firewalld的使用效能更高,稳定性更好。
CentOS7配置防火墙的两种方法:
一、使用xml配置文件的方式配置;
方法一
cp /usr/lib/firewal ...