Use the tutorial commands to install Parse Server and Dashboard on Ubuntu 20.04 Focal Fossa using the terminal.
What is Parse Server?
Parse Server is an open-source Backend As A Service (BAAS) platform that can be deployed to any infrastructure that can run Node.js. It uses MongoDB or PostgreSQL as a database to develop and test your app locally using Node. Whereas to manage the Parse server backend graphically using the web interface, the developers of this platform also offer Parse Dashboard. That provides a single GUI dashboard to add and manage more than one Parse server.
Here in this tutorial, we will learn the simple commands to install and use parse server and dashboard applications on the Ubuntu 20.04 system.
Contents
To perform this tutorial we need the following things:
• Ubuntu Server
• Node 8 or newer
• MongoDB version 3.6
• Python 2. x
• A non-root user with sudo rights
• Terminal access
Parse Server developed in NodeJs language, hence, we need it to be on our system, first. Therefore follow the given commands to set up the latest available version of Node on your Linux.
Along with this get the Yarn as well that we required to install the dependencies required by the node modules.
Parse server supports MongoDB as well as PostgreSQL Databases to store data. Here we are going for MongoDB, hence, just use the given command in your system using the APT package manager to get it.
Now, our system has all the things we required for the installation of the Parse server on Ubuntu 20.04. Therefore, use the Yarn package manager because Parse is available as a Nodejs module.
Once the installation is done, create the configuration file:
Add the following lines:
Start the Parse Server:
To get a Graphical user interface for the Parse server, we can go for the web-based Dashboard available for it.
Once the installation is completed, create a configuration file:
Now, add the given lines. Don’t forget to set the same appID and masterkey values used while setting up the Parse server.
Save the file by pressing Ctrl+O, press Enter key, and then exit using Ctrl+X.
Note: Replace 192.168.17.131 in the above code with your actual parse server ip-address where you have installed it. Also, don’t forget to change the user and pass values to set username and password to login Parse Dashboard.
Start the Parse Dashboard in the background:
The Parse server uses port number 1337 whereas the web Dashboard works on 4040, there to access them outside your local system using any other system, we need to open them. Here are the commands to follow:
Once you are done with all the commands, the parse server and dashboard will be running in the background. To access the Web UI open your system browser that can access the IP address of the server where you have installed them. And point it in the following way:
Note: Replace server-ip-address with your actual address.
Other Articles:
• Steps to Install MongoDB on Rocky Linux 8 or AlmaLinux
• How to install MongoDB Server on Linux mint 18 | 19 | 20
• How to install MongoDB 5.0 Server on Debian 11 Bullseye
• Install Tor Browser on Ubuntu 22.04
Ubuntu
Ubuntu
Ubuntu
Ubuntu
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Linux Shout crafted as a part of our main portal H2S Media to publish Linux related tutorials and open source Software.
Install Parse Server & dashboard on Ubuntu 20.04 LTS – Linux Shout
Leave a comment