【发布时间】:2016-07-20 02:03:41
【问题描述】:
我的云服务器是 Ubuntu 14,在我安装 jekyll 并像 sudo jekyll serve --port 80 --host 'my server ip address' 一样启动它后,它显示如下错误:
Configuration file: /home/ubuntu/mydomain.com/_config.yml
Deprecation: You appear to have pagination turned on, but you haven't included the `jekyll-paginate` gem. Ensure you have `gems: [jekyll-paginate]` in your configuration file.
Source: /home/ubuntu/mydomain.com
Destination: /home/ubuntu/mydomain.com/_site
Incremental build: disabled. Enable with --incremental
Generating...
done in 1.177 seconds.
Deprecation: You appear to have pagination turned on, but you haven't included the `jekyll-paginate` gem. Ensure you have `gems: [jekyll-paginate]` in your configuration file.
Auto-regeneration: enabled for '/home/ubuntu/mydomain.com'
Configuration file: /home/ubuntu/mydomain.com/_config.yml
jekyll 3.1.2 | Error: Cannot assign requested address - bind(2) for 'host:port'
那么我该如何解决这个问题。
想定时把自己的github页面拉到云服务器上,发现有人这样干的
crontab -e
*/2 * * * * cd ~/mydomain.com/; git pull >> /tmp/github_blog_pull_record.log 2>&1;
我不知道*/2 * * * * cd ~/mydomain.com/; git pull >> /tmp/github_blog_pull_record.log 2>&1; 是什么意思?
【问题讨论】:
标签: git ubuntu nginx jekyll crontab