Blog

  • How to Buy Instant Dedicated Server from NeuronVM

    How to Buy Instant Dedicated Server from NeuronVM

    A Dedicated Server is a specialized web hosting service that is specifically allocated to one customer. By utilizing a dedicated server, you have full access to all resources without having to share them with other users. This tutorial is going to teach you How to Buy Instant Dedicated Server from NeuronVM.

    NeuronVM Dedicated Servers

    NeuronVM provides cheap dedicated servers from all over the world. we have tried to use the best data centers in the world. If you need high speed and security, NeuronVM dedicated servers are your main need. Some of the features of dedicated servers are the possibility of providing many IPs, very high quality, high speed, complete security of servers, and a variety of locations.

    Get an Instant Dedicated Server from NeuronVM

    Now let’s see how to buy an Instant Dedicated Server from NeuronVM. Follow the steps below.

    First, navigate to the official NeuronVM website, and from the Dedicated Servers section in the main menu, click on Instant Dedicated Server:

    buy instant dedicated server

    On the page that opens, scroll down to see Instant Dedicated Server plans.

    Choose your desired plan and click on Buy Now:

    The Shopping Cart page will appear you can choose Billing Cycle, and Configurable Options, and fill in the options to configure your server.

    Billing Cycle payments are provided Monthly, Quarterly, Semi-Annually, and Annually.

    In the Configure Server section, you should fill in the fields related to Hostname, root password, and NS Prefixes.

    The Configurable Options section allows you to choose your Operating System, Additional IPs, and location.

    Now, configure your desired options and click on Continue:

    Review your checkout and click on Continue again:

    Now enter your personal details and billing information to Register on our website and click on Checkout:

    Complete your payment and that’s all. After successful payment, the service information you want will be sent to you as soon as possible.

    Conclusion

    In this article, we taught you how to buy instant dedicated server from NeuronVM. If you encounter any problems during the purchase process, please let us know in the comments section.

  • Tutorial Configure Parse Server on CentOS 8

    Tutorial Configure Parse Server on CentOS 8

    In this article, we are going to teach you How to Configure Parse Server on CentOS 8. Modern applications store data and interact with other services on the Internet. User accounts shared content, documents, and purchases need to be linked and stored elsewhere. All of these programs require complementary server-side applications to communicate with. Before Parse, these items had to be made separately, which requires knowledge in many disciplines. Few people can do this alone. The rest were grouped together and worked with others to complete the whole picture.

    What is a Parse Server?

    Parse Server is an open-source and self-hosted backend. Parse server can be deployed on any infrastructure that can run Node.js. You can deploy and run the Parse Server on your infrastructure. One of the biggest successes of Parse Server is that you can develop and test your application locally.

    The analytics server can be hosted anywhere, and you can even run multiple instances in different regions to serve a global audience. Parse uses MongoDB and PostgreSQL to store information and create new features. Also, Parse has stored all the files in its Amazon S3 bin. Using Parse Server, adapters are written that allow developers to control the database platform and file storage system they want to use. You can develop and test your application using Node.

    Prerequisites to Install Parse Server on CentOS 8

    1. CentOS Linux VPS

    2. A privileged Sudo account

    3. Login via SSH as the root account

    How to Install Parse Server on CentOS 8

    First, you should install Node.js from the official Yum repository. You can configure the Yum repository using the following command:

    dnf install -y gcc-c++ make
    curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash -

    Now to install Node.js on your server, run the following command:

    sudo dnf install -y nodejs

    In this step, you must install Yarn. You can install Yarn with the NPM repository or using the DNF package manager tool. By entering the following command, the Yarn repository will be added to your system:

    sudo rpm --import https://dl.yarnpkg.com/rpm/pubkey.gpg
    curl -sL https://dl.yarnpkg.com/rpm/yarn.repo -o /etc/yum.repos.d/yarn.repo

    Now you can install Yarn by entering the following command:

    sudo dnf  install yarn --disablerepo=AppStream

    Next, you should install MongoDB according to the required version and architecture of your system. To do this, add the following content to the Yum repository configuration file:

    sudo vi /etc/yum.repos.d/mongodb.repo
    [MongoDB]
    name=MongoDB Repository
    baseurl=http://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.2/$basearch/ 
    gpgcheck=1
    enabled=1
    gpgkey=https://www.mongodb.org/static/pgp/server-4.2.asc

    Remember to save your file and close it.

    Then run the following command to install the MongoDB server:

    sudo dnf install mongodb-org

    After installing the required packages, you can install Parse Server. The Parse Server package is available in the global repository and can be installed using the Yarn packaging manager. To install Parse Server, run the following command:

    yarn global add parse-server

    How to Configure Parse Server on CentOS 8

    Now you should create a configuration file for your Parse Server. In the configuration file, you can define parse server attributes. Create a configuration file by entering the following command and editing it in your desired text editor:

    nano config.json

    Remember to add the following content to the file:

    {
    "appName": "My Parse Server",
    "databaseURI": "mongodb://localhost:27017/dev",
    "appId": "KSDJFKDJ9DKFDJDKF",
    "masterkey": "KJDF89DFJ3H37JHFJDF8DFJDF",
    "serverURL": "https://localhost:1337/parse",
    "publicServerURL": "https://0.0.0.0:1337/parse",
    "port": 1337
    }

    The configuration details are as follows:

    appName – Set a name for your Parse Server

    databaseURI – Connection string to the MongoDB database

    appID – Set a random string as appID, which is used to connect to the server

    masterKey – Set a random string for the master key

    serverURL – Set a URL for your parse server

    publicServerURL – This allows you to access the parse server from the public network

    port – Enter a port to run on the parse server. The default port is 1337

    After saving the file, run the parse server by entering the following command. Also, run it as a background process.

    nohup parse-server config.json &

    How to Install Parse Dashboard on CentOS 

    In this step, you are going to install a web interface to access the Parse Server called the Parse Dashboard, which is also available as a node module. You can install Parse Dashboard by entering the following command:

    yarn global add parse-dashboard

    Now you should create a configuration file for the Parse Dashboard using the following command and edit it in your desired text editor:

    nano parse-dashboard-config.json

    Then add the following content:

    {
      "apps": [
        {
          "serverURL": "http://your_server_ip:1337/parse",
          "appId": "KSDJFKDJ9DKFDJDKF",
          "masterKey": "KJDF89DFJ3H37JHFJDF8DFJDF",
          "allowInsecureHTTP": "true",
          "appName": "MyApp1"
        }
      ],
     "users": [
        {
          "user":"admin",
          "pass":"password"
        }
      ],
      "iconsFolder": "icons"
    }

    Multiple Parse Servers can be added to your Parse Dashboard. Add your Parse Server with the server URL and use the same appID and master key you defined for your Parse Server.

    After saving the file, start the Parse Dashboard by running the following command:

    nohup parse-dashboard --dev --config parse-dashboard-config.json &

    Finally, the Parse Server is set up on port 4040.

    Next, you should set the FirewallD Rules. Because systems have a firewall enabled, they must allow access to the ports running the Parse Server. Use port 1337 for the parse server and 4040 for the dashboard. By running the following commands, Parse server access will be possible for public users. Run the following commands to open the port type:

    sudo firewall-cmd --permanent --zone=public --add-port=1337/tcp
    sudo firewall-cmd --permanent --zone=public --add-port=4040/tcp

    By running the following command, the above changes will be applied:

    firewall-cmd --reload

    How to Access Parse Dashboard on CentOS 

    By accessing your server on port 4040, you access the web interface of your Parse dashboard. You must log in with the username and password of the dashboard as defined in the parse configuration file (parse-dashboard-config.json).

    How to Access Parse Dashboard on CentOS Linux

    Now you can see the dashboard:

    How to Access Parse Dashboard on CentOS Linux

    Conclusion

    In this article, you learned how to configure Parse Server on CentOS 8. Also, you were taught how to install the Parse Dashboard and how to access it. Note that using Parse, developers will have the opportunity to provide a scalable and powerful back end for an application filled with facilities, android, javascript, windows, and so on.

  • How to Install and Setup cPanel on Dedicated Server

    How to Install and Setup cPanel on Dedicated Server

    In this article, we are going to teach you How to Install and Setup cPanel on Dedicated Server. When you get a server, you need a control panel to use it better. cPanel is one of the most widely used options for various control panels. NeuronVM offers a cheap Dedicated Server, which is the best choice.

    Tutorial Setup cPanel on Dedicated Server

    In the rest of the article, we will first give you a definition of cPanel. Then we will mention the prerequisites for installing cPanel on a dedicated server. After that, we will explain to you how to connect to the server. Finally, we will teach you how to Install cPanel on Dedicated Server.

    What is cPanel?

    cPanel is one of the most popular control panels that simplify website and server management. You can publish websites, manage domains, organize web files, create email accounts, and more using cPanel. It has two interfaces, a user interface called cPanel and a server management interface called Web Host Manager (WHM). This interface allows users to manage their website and also supplies hosting providers with tools to manage the server.

    Prerequisites to installing cPanel on Dedicated Server

    Before installing cPanel, you should prepare the following prerequisites:

    –> Connecting to the Server

    –> Checking your Operating System Configuration

    –> Buy a cPanel license

    How to Connect to the Server

    You can connect to a server through SSH and PuTTY. If you want to connect to a server through SSH remote control, you should open a command line and run the following command:

    root@IP_Address

    And then enter the root password of your server.

    But if you want to connect to a server using PuTTY, first go to the PuTTY website and download and install the client. Then open the client, enter the IP address of your server in the Sessions menu, click Open, and enter the root password of your server.

    Installing cPanel on a Dedicated Server

    Now it’s time to learn how to install cPanel on a dedicated server. To do this, first open the home directory with the following command:

    cd /home

    Next, download the latest installation files from the cPanel’s servers using the command below:

    curl -o latest -L https://securedownloads.cpanel.net/latest

    Then open and run the installation files by entering the following command:

    sh latest

    Activate the cPanel license using the command below:

    /usr/local/cpanel/cpkeyclt

    That’s all about installing cPanel on a dedicated server.

    Conclusion

    cPanel is one of the most popular control panels. In this tutorial, we introduced you to cPanel and taught you how to install and setup cPanel on a Dedicated Server. You can ask your questions in the comments section.