配置匿名FTP服务器在修改完/etc/vsftpd/vsftpd.conf文件后restart出现error
Job for vsftpd.service failed because the control process exited with error code. See "systemct... ...
分类:
其他好文 时间:
2021-02-23 14:23:37
阅读次数:
0
https://www.cnblogs.com/yeungchie/ CentOS6 已经停更了,但由于某些原因还得接着用着,找到几个暂时还能用的 yum 源 备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.r ...
分类:
系统相关 时间:
2021-02-20 12:38:48
阅读次数:
0
本文主要记录关于多表查询的相关知识: 所用到的数据库代码如下: -- 部门表 CREATE TABLE dept ( id INT PRIMARY KEY PRIMARY KEY, -- 部门id dname VARCHAR(50), -- 部门名称 loc VARCHAR(50) -- 部门所在地 ...
分类:
数据库 时间:
2021-02-20 12:08:51
阅读次数:
0
思路: 1. 查询出端口所在进程的PID 2. 杀死进程(PID) Linux 查询占用的端口(如8080端口) netstate -anp | grep 8080 杀死进程 kill -9 2787 #进程的pid Mac 查询占用的端口(如8080端口) sudo lsof -i tcp:808 ...
分类:
其他好文 时间:
2021-02-20 11:59:43
阅读次数:
0
CentOS7 法一: 1.查看外网是否通畅 ping mirrors.163.com 2.下载repo文件 cd /etc/yum.repos.d wget http://mirrors.163.com/.help/CentOS6-Base-163.repo 3.备份并替换系统的repo文件 mv ...
分类:
其他好文 时间:
2021-02-20 11:54:53
阅读次数:
0
1. 创建数据库 法一:用登入默认用户postgresql创建 注:创建语句结束要记得加; 用postgresql登入数据库 sudo su - postgres psql 创建用户 CREATE USER dbuser WITH PASSWORD 'password'; 创建库 CREATE DA ...
分类:
数据库 时间:
2021-02-19 13:49:56
阅读次数:
0
普通信号的复现 1)SIGHUP 该信号在终端挂起或控制进程终止时发出,那可以通过在终端中运行进程,然后关闭终端来实现。 代码如下: 1 /** 2 * filename: signal_1.c 3 * author: Suzkfly 4 * date: 2021-02-15 5 * platfor ...
分类:
系统相关 时间:
2021-02-18 13:07:16
阅读次数:
0
Schedule timed jobs on macOS with launchd launchd is a robust scheduled job automation tool on macOS that allows you to schedule a task to be run at r ...
分类:
系统相关 时间:
2021-02-16 12:18:49
阅读次数:
0
debain10 修改apt源为aliyun mv /etc/apt/sources.list /etc/apt/sources.list.bak && vi /etc/apt/sources.list deb https://mirrors.aliyun.com/debian/ buster ma ...
分类:
其他好文 时间:
2021-02-09 12:34:02
阅读次数:
0
refer to: https://stackoverflow.com/questions/24387451/how-can-i-kill-whatever-process-is-using-port-8080-so-that-i-can-vagrant-up/24388281 怎么解决端口被占用的 ...
分类:
其他好文 时间:
2021-02-09 11:56:30
阅读次数:
0