I would like to have the pencilblue nodejs cms with mongodb installed on my uberspace account. Which steps do I have to take?
How to install a nodejs cms like pencilblue on uberspace
714 Views Asked by Lem At
1
There are 1 best solutions below
Related Questions in NODE.JS
- How to solve CERT_UNTRUSTED error in nodemailer
- Run a loop over a callback, node js
- Implementing prerender.io middleware in sails.js
- Token based authorization in nodejs/ExpressJs and Angular(Single Page Application)
- formatting path string in javascript
- One to One screensharing using WEBRTC
- Create polygon from grid (for collisions)
- Strange npm behavior when installing packages like grunt
- Convert JSON.gz to JSON in node js
- "Your npm version is outdated." but it's not. While install yo
- Why put methods on the prototype of a class instead of declaring them in the constructor?
- Node JS Async Response
- mongoose get property from nested schema after `group`
- Cannot Receive Incoming call on Twilio android Client
- How can I change a specific line in a file with node js?
Related Questions in GITHUB
- How do I create my own Git branch to work on?
- Tools for Apache Cordova - Installed Plugins are skipped in build
- Permission denied hg-git
- git hard reset - what am I doing wrong?
- Merge Pull Request Manually
- rebasing interactively, but only one commit shows up?
- Error when adding a new build stage on Bluemix DevOps Services
- What should I do if I put MS Office (e.g. .docx) or OpenOffice( e.g. .odt) document into a git repository?
- How to trigger git hooks without pushing to the repo
- How to push a Git server repository issues to Github repository?
- How to backup an AOSP project on GitHub
- How to reference comments in github.com?
- Aptana, github & remote (sftp) files
- Opening PDF in a browser with Github Pages
- I need git to include the parent directory
Related Questions in PENCILBLUE
- Mongolab connecting to Heroku with PencilBlue
- Pencilblue - origin not allowed for controller endpont
- Pencilblue: Building api around custom object type
- How to add a module to Angular in Pencilblue?
- Redirection from http to https (Pencilblue Elastic Beanstalk)
- adsense-pencilblue initialising of plugin is failing
- Pencilblue - Webservice to get a list of all articles rendered
- Pencilblue installation
- How do I subscribe to events in PencilBlue?
- How to run pencilblue on aws?
- How to connect pencilblue and mongodb running on two different AWS EC2 instances?
- PencilBlue - Custom Object Id's
- PencilBlue adding new field to the sign up form
- Pencilblue (node.js) performance issue: constantly writing to disk
- In Navigation, possibility for page as Parent Navigation Item for other pages?
Related Questions in UBERSPACE
- Akeneo PIM No alive nodes found in your cluster ERROR
- PHP deployer - task deploy:unlock throws RuntimeException
- How to use Ruby CGI scripts on Uberspace
- How to force mime type on js files with apache?
- Rails/Uberspacify: 503 Service Temporarily Unavailable
- Flask FastCGI Setup
- How to redirect subfolder as proxy in htaccess?
- Grav 1.7 Installation fails bc of call to undefined method
- Installing/Using Bower on Uberspace with NPM
- How to install a nodejs cms like pencilblue on uberspace
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As I found it hard figuring out how to do it, here is how I finally succeeded. Most of it is relevant for nodeJS installations other than pencilblue as well.
First you need to create an account on uberspace.de.
Open your terminal and login into your uberspace console with ssh:
Enter the password you created with the creation of the account.
Create the service directory:
Create the mongo database:
Create folder for database data:
Start db:
You will get some login data. I suggest you write it down somewhere:
To connect to the db via shell you may use:
Configure npm:
Install pencilblue-cli:
Change to html-folder and create a .htaccess file (you could do this with your ftp-client as well):
Now if you want to use github: Create a new repository on github.
Open a new terminal window and clone pencilblue cms in a local folder on your machine:
Setup ssh on uberspace: Go back to your uberspace console.
Copy the whole key that is printed out and paste it in github under settings/SSH keys.
Clone the new repo in uberspace console:
Create a config.js either with vim config.js or upload it with ftp:
Install node_modules:
Create a service that starts the server:
Start the service:
Now you can go to the page on http://{account}.{server}.uberspace.de
(To start the service (hint: u = up):
To stop the service (hint: d = down):
To reload the service (hint: h = HUP):
To restart the service (hint: du = down, up):
To remove the service: