摘要: 检查是否安装 rpm -q vsftpd 安装 yum -y install vsftpd 启动服务 systemctl start vsftpd.service 禁止匿名用户登录 vim /etc/vsftpd/vsftpd.conf 将匿名登陆改成NO anonymous_enable=YES 阅读全文
posted @ 2020-09-28 15:33 稚嫩的老大爷 阅读(232) 评论(0) 推荐(0)
摘要: 获取时间 getTime() { setInterval(() => { let myDate = new Date(); let year = myDate.getFullYear(); let month = myDate.getMonth() + 1; let date = myDate.ge 阅读全文
posted @ 2020-09-09 17:10 稚嫩的老大爷 阅读(175) 评论(0) 推荐(0)
摘要: 编辑器推荐vscode https://code.visualstudio.com/ 下载并安装node.js 官网https://nodejs.org/en/傻瓜式一键安装 安装淘宝镜像 npm install -g cnpm --registry=https://registry.npm.tao 阅读全文
posted @ 2020-09-08 15:12 稚嫩的老大爷 阅读(103) 评论(0) 推荐(0)