2016-03-31 6 views
0

My Cloud Server Ubuntu 14 ist, nachdem ich jekyll installieren und wie sudo jekyll serve --port 80 --host 'my server ip address' starten, zeigt es Fehler wie unten:Der Fehler beim Start jekyll Server

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' 

Wie behebe ich dieses Problem.

Ich möchte meine Github-Seiten an den Cloud-Server in regelmäßigen Zeit ziehen, und ich fand jemand hat es sich ange

crontab -e 

*/2 * * * * cd ~/mydomain.com/; git pull >> /tmp/github_blog_pull_record.log 2>&1; 

Und ich weiß nicht, was bedeutet */2 * * * * cd ~/mydomain.com/; git pull >> /tmp/github_blog_pull_record.log 2>&1; zu bedeuten?

Antwort

0

Frage 1: Sie haben bereits einen Prozess mit 80 Port arbeiten, versuchen Sie Ihre jekyll serve Port sudo jekyll serve --port 81 --host 'my server ip address' zu ändern. Hinweis: Warum jekyll mit sudo ausführen? Keine Sicherheit!

Frage 2: */2 * * * * cd ~/mydomain.com/; ... ist ein cron task, die Sie um 02:00 Uhr alle Tage Repository GitHub ziehen wird.

Hinweis: Es ist besser, eine Frage auf einmal zu stellen.

+0

Ich starte meinen Server neu, der den jekyll-Serve ausführt, es zeigt 'Konnte jekyll nicht finden (> = 0), ... von/usr/local/bin/jekyll: 22: in

'', aber ich installiere wirklich jekyll –

Verwandte Themen