Virtual Service deployed on a Linux server is not listening and a request times out.
search cancel

Virtual Service deployed on a Linux server is not listening and a request times out.

book

Article ID: 279129

calendar_today

Updated On:

Products

Service Virtualization

Issue/Introduction

A Virtual Service has been deployed from a Windows Workstation to a Linux server.
The Virtual Service is shown correctly in the Portal but there are no transactions.
When sending an HTTP(S) request to the VS using Postman, the request times out. 
How can the TCP connectivity from a client to the VS be checked. 

Environment

Release : All supported versions of DevTest

Component : Service Virtualization

Resolution

Confirm on the Linux server that the VS is listening on the listen port of the VS with the netstat command:
netstat -anp

Use telnet to confirm the connectivity: 
telnet <remote server name or ip> <remote port number>

Or on Windows from a powershell run: 
Test-NetConnection -Port <remote port number> -ComputerName <remote server name or ip>