• Products
  • Solutions
  • Customers
  • Resources
  • Company
  • Pricing
  • Download
Try Playground
  • Create NCache Management Service
Show / Hide Table of Contents
  • Deploying NCache in Azure Service Fabric
  • Create Service Fabric Cluster
  • Create NCache Cluster Service
  • Create NCache Discovery Service
  • Create NCache Management Service
  • Create NCache Cluster
  • Create Client Application Service
  • Monitor NCache Cluster and Clients
  • Adding Cache Servers at Runtime
  • Removing Cache Servers at Runtime

Azure Service Fabric: Create Cache Management Service

NCache management service is a Azure Service Fabric service used for management and monitoring purposes by accessing the NCache Management Center. In order to access the Management Center, a host port 9801 needs to be accessed and that cannot be done in Open configuration mode as it does not allow host to port mapping. For this purpose NCache management service is separated from the NCache cluster service. This Azure Service Fabric service is created in the default NAT mode.

Azure Service Fabric: Service File to Create NCache Management Service

The Azure Service Fabric service file contains the same container image as in NCache cluster service, however the endpoint is created to expose the port 9801 for management with "http" protocol as shown below:

<?xml version="1.0" encoding="utf-8"?>
<ServiceManifest Name="NCacheWebManagerPkg"
                 Version="1.0.0"
                 xmlns="http://schemas.microsoft.com/2011/01/fabric"
                 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ServiceTypes>
    <StatelessServiceType ServiceTypeName="NCacheWebManagerType" UseImplicitHost="true" />
  </ServiceTypes>
  <CodePackage Name="Code" Version="1.0.0">
    <EntryPoint>
      <ContainerHost>
        <ImageName>alachisoft/ncache</ImageName>
      </ContainerHost>
    </EntryPoint>
  </CodePackage>
  <ConfigPackage Name="Config" Version="1.0.0" />
  <Resources>
    <Endpoints>
      <Endpoint Name="web-management" Protocol="http" UriScheme="http" Port="9801" Type="Input" CodePackageRef="Code" />
    </Endpoints>
  </Resources>
</ServiceManifest>

See Also

Deploying NCache in Azure Service Fabric
Create Service Fabric Cluster
Create NCache Cluster service
Create NCache Cluster

In This Article
  • Azure Service Fabric: Service File to Create NCache Management Service
  • See Also

Contact Us

PHONE

+1 (214) 764-6933   (US)

+44 20 7993 8327   (UK)

 
EMAIL

sales@alachisoft.com

support@alachisoft.com

NCache
  • NCache Enterprise
  • NCache Professional
  • Edition Comparison
  • NCache Architecture
  • Benchmarks
Download
Pricing
Try Playground

Deployments
  • Cloud (SaaS & Software)
  • On-Premises
  • Kubernetes
  • Docker
Technical Use Cases
  • ASP.NET Sessions
  • ASP.NET Core Sessions
  • Pub/Sub Messaging
  • Real-Time ASP.NET SignalR
  • Internet of Things (IoT)
  • NoSQL Database
  • Stream Processing
  • Microservices
Resources
  • Magazine Articles
  • Third-Party Articles
  • Articles
  • Videos
  • Whitepapers
  • Shows
  • Talks
  • Blogs
  • Docs
Customer Case Studies
  • Testimonials
  • Customers
Support
  • Schedule a Demo
  • Forum (Google Groups)
  • Tips
Company
  • Leadership
  • Partners
  • News
  • Events
  • Careers
Contact Us

  • EnglishChinese (Simplified)FrenchGermanItalianJapaneseKoreanPortugueseSpanish

  • Contact Us
  •  
  • Sitemap
  •  
  • Terms of Use
  •  
  • Privacy Policy
© Copyright Alachisoft 2002 - 2025. All rights reserved. NCache is a registered trademark of Diyatech Corp.
Back to top