软件工具

vps自建git服务器

参考连接:https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137583770360579bc4b458f044ce7afed3df579123eca000 1、安装git:使用命令 apt-get install git 2、创建git用户,用来运行git服务:使用命令 ad… 阅读更多 »vps自建git服务器

用lnmp+wordpress建站

在建站的过程中主要参考了如下两篇文章: 1、http://jwcyber.com/build-site/ 2、https://www.jianshu.com/p/56750622cac9 主要步骤: 1、购买vps,购买域名,域名解析(A表示主记录,其中@表示域名即xiaojianliu.com,指向填写服务器ip地址;CName别名即把一个域名重定向到另一个域名,填写www,即表示www.xia… 阅读更多 »用lnmp+wordpress建站

SSH远程登录

1、使用ssh远程登录出现“ssh host key verification failed”: 输入命令:ssh-keygen -R hostname(0.0.0.0) 2、再使用ssh登录时,出现“permission denied(publickey)”: 登录远程服务器,修改配置文件:vim /etc/ssh/sshd_config 修改“PasswordAuthentication ye… 阅读更多 »SSH远程登录