The Endpoints feature at Cloudjiffy refers to the possibility of TCP/UDP ports mapping via the Shared Load Balancer, which is intended to simplify the instances collaboration with third-party tools and resources. This is achieved through providing the ability to establish the direct connection (over either raw TCP or UDP protocol) to the corresponding node, without the mandatory Public IP address attached.
Endpoints Managing
The list of endpoints can be accessed via the environment Settings menu, that opens through selecting the same-named button for a particular environment.
Within the opened tab, switch to the Endpoints menu item. Now you can start working with your mapping’s list:
- add new endpoint
-
edit/remove the existing endpoint
Adding Endpoints
To create a new endpoint, click the Add button from the top tools’ pane and fill in the appeared Add Endpoint form with the relevant data:
- Node - select the instance to set the endpoint for (here only the comprised in the chosen environment nodes are displayed)
- Name - either type the title for a new endpoint or choose one of the preconfigured options (the corresponding list is provided just down the page)
- Private port - specify the preferred local node’s port to be used for mapping (it’s substituted automatically in case the predefined Name was selected)
-
Protocol - select either TCP or UDP
The rest of fields, i.e. Public port and Access URL, will be configured by Cloudjiffy automatically.
Select Add when ready.
For more convenience, we provide the embedded list of predefined endpoint configurations, based on the protocol or purpose implied:
Connection Name | Private Port |
---|---|
Remote Desktop | 3389 |
PowerShell | 5986 |
SMTP | 25 |
FTP | 21 |
DNS | 53 |
HTTP | 80 |
POP3 | 110 |
IMAP | 143 |
LDAP | 389 |
HTTPS | 443 |
SMTPS | 587 |
POP3S | 995 |
IMAPS | 993 |
Optional* | |
{database_name} | {database_port} |
RDP | 3389 |
DEPLOY | 8172 |
*Optional values availability depends on the type of the chosen node:
- database nodes are provided with the default endpoint, named after themselves and with the appropriate port stated
- Windows-based containers have the additional RDP (3389) connection
- IIS application server has the DEPLOY (8172) connection for the direct project deployment from IDE
After the confirmation, you’ll see the new endpoint appeared in the list.
Edit/Remove Endpoint
Any existing endpoint can be easily edited or removed in case of further unnecessity. For that, just select the desired connection within the endpoints list and click the Edit (either use double-click on the required line) or Remove button, located at the tools’ pane above.
Depending on the option chosen, you’ll see the following:
-
Edit - in the appeared Edit Endpoint form (which is completely similar to the Add one) you can modify all the above mentioned settings except the Node choosing (as this makes no sense - you could just add a new similar endpoint to the required instance).
Once the required changes are made, just Apply them with the same-named button at the bottom of the frame.
-
Remove - the special pop-up frame will appear, where you need to confirm my decision:
Just after that, the corresponding endpoint will be removed from the list.
Endpoints Use-Cases
Once the required mappings are configured, you can apply them for running different tasks. To make it easier to start, below we’ll describe a few most common endpoints’ use-cases that you can benefit from.
As an example, we will use an environment with the Apache application server and MySQL database (You can create the similar one following this guide):
Now, let’s learn how to use endpoints for:
- establishing remote access to my database
-
running multiple project copies on a single app server
Database Management
With endpoints, gaining remote access to my DB instance becomes pretty easy, as using this feature eliminates the necessity to acquire any additional options like a Public IP. To show this, we’ll consider two simple ways of performing this operation: through embedded OS terminal and third-party DB client.
Connection via Terminal
The most common approach is to use the embedded terminal of my local machine, as this does not require any additional installations or configurations and provides sufficient functionality for a simple connection establishment - just a single command is required:
where
- {host} - endpoint Access URL without the port suffix specified (node4450-env-endpoints.cloudjiffy.net in our case)
- {port} - public port number assigned (11124 in this example)
-
{user} - database user name (Cloudjiffy has sent it to the email during the environment creation - by default, it stands for root for all the new MySQL servers)
After the connection validation, you’ll be requested for the appropriate DB user’s password (it can also be found in the abovementioned email) in order to access your database.
That’s all! Now you can start working with your database through executing the required SQL queries.
Connection via Local Client
In the case, you require advanced functionality or if you used to managing the data stored within your database with more convenience, a type of database desktop client may come in handy here. It will provide me with a user-friendly graphic interface and the variety of included features to accelerate my work.
For an example of such a client, that will help to establish the remote connection to our database through the created endpoint, we’ll use one of the most popular DB management tools - MySQL Workbench.
1. Run the abovementioned application and click the New Connection button.
2. In the appeared Setup New Connection frame, fill in the following fields at the top:
- Connection Name - set an appellation for your connection (e.g. jelastic-db)
-
Connection Method - choose the Standard (TCP/IP) method
Then, specify the required DB data inside the Parameters tab beneath:
- Hostname - endpoint URL without the port number specified at the end (node4450-env-endpoints.cloudjiffy.net in our case)
- Port - the endpoint’s public port (we got port 11124 assigned during its addition)
- Username - name of the admin DB user (Cloudjiffy has sent it to you via email during the environment creation - by default it stands for root for all the new MySQL servers)
- Password - either click Store in Keychain to enter and save your pass (which can be found within the same email) or skip this field to specify it during each connection attempt
-
Default Schema - the database schema to be used by default (can be also left blank)
Click OK to complete.
3. Double-click on the newly appeared connection record to initiate its establishment and specify your password in the appeared frame (if you haven’t saved it before).
You can also tick Save password in keychain if you don’t want to enter it manually each time you need to access your database. Click the OK button to proceed.
4. In a minute, you’ll be connected to your DB.
Great! Now you can start organizing your data using all the provided benefits of the full-featured management client.
Just in the same way you can connect to any other database server within Cloudjiffy or, for example, backup and restore your data within dump files.
Multiple Development Stages at a Single App Server
Beside the elementary operations of DB management, endpoints also give the ability to implement a variety of useful and interesting solutions for other servers. Below we’ll examine one of such beneficial possibilities this feature ensures - how to use a single application server as my production and development environment simultaneously (with the Apache instance from our environment as an example).
1. So, map the endpoint to your Apache server with the preferred unused private port opened.
2. Now, deploy your application twice to different contexts (e.g. prod and dev).
3. The next step is configuring Apache itself - thus, click the Config button next to this server and open its main configuration file (the conf > httpd.conf one).
4. Scroll down and add the following string to the registry of listened ports:
Listen 0.0.0.0:{port}
Here, the {port} parameter should be substituted with the private port number you’ve stated during the addition of the endpoint (we’ve chosen the 81st one).
5. After that, move to the end of the file and duplicate the VirtualHost section, specifying the corresponding port number (the same as in the step above) within its heading.
Then adjust the appropriate DocumentRoot locations for both virtual hosts with the corresponding projects (prod - for the default one and dev - for the custom section beneath).
6. Save the performed changes and Restart the Apache server to apply them.
7. Now you can connect to your prod project as usual, e.g. using the Open in browser button (or entering the external custom domain if one was additionally bound to my app), while for accessing its dev version, you just need to specify the used endpoint’s Access URL.
As a result, you’ve got two connection points to your two projects, which allow you to perform any desired testing or development tasks at one of the copies, with zero influence on the another one. Moreover, they can be swapped in a few clicks if necessary.