Running a Node.js app (ghost) with forever and crontab on linux (CentOS)

Pre-requisites Root access to your server or have access to an account that has sudo powers on your servers – Instructions here to see how to give a linux user sudo powers. nodejs and npm installed – Instructions here. ghost installed and a ghost user made to run ghost – Instructions here What is forever…

Installing ghost on production linux server (CentOS)

Pre-requisites Root access to your server or have access to an account that has sudo powers on your servers – Instructions here to see how to give a linux user sudo powers. nodejs and npm installed – Instructions here. Installing Where to install First let’s decide where to put the ghost directory. I chose /var/www/,…

Installing nodejs and npm on Linux CentOS

You will need to have root access to your server or have access to an account that has sudo powers on your servers. Check this post to see how to give a linux user sudo powers. I did some experimentation, as my usual, to get comfortable with all the commands I was using. If you…

Installing a ghost theme on linux centos server

I will be using centos logging in through ssh. I assume you have git installed. If not simply issue this command: yum install git To install new themes in ghost we need to put the new themes in the ghostdir/content/themes directory. So first thing’s first let’s go there. [ahmed@amayem ~]$ cd /var/www/ghost/content/themes/ You should be…