Questions tagged [fqdn]

A Fully Qualified Domain Name is a domain name that specifies its exact location in the hierarchy of the Domain Name System.

A Fully Qualified Domain Name is a that specifies its exact location in the hierarchy of the Domain Name System .

A FQDN consists of zero or more s followed by a top-level domain (e.g com, org, net etc.), separated by periods and terminated by a final period which represents the root zone.

Example: meta.stackoverflow.com.

As a special case, a single period . represents the root of the directory tree.

See also: RFC 1035: DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION

168 questions
3
votes
2 answers

How should I get the fully qualified domain name of "localhost" in c++ (on ubuntu)?

I've been messing around with getaddrinfo and getnameinfo but the closest I got to useful output was "localhost.localdomain". I'm not sure what to pass in for the "node" or "service" args of getaddrinfo, although I think it's the function I want.
karenc
  • 267
  • 1
  • 3
  • 11
3
votes
4 answers

Install Chef-Server 11 on EC2 Instance

I am using hosted Chef for quite some time. Wanted to explore the opensource chef server. hence I am trying to setup my Chef-Server 11 on EC2 instance. I have Chef-server running and I can access the web GUI for the same. I have the chef-workstation…
slayedbylucifer
  • 22,878
  • 16
  • 94
  • 123
3
votes
2 answers

Tomcat with 1-way and 2-way SSL

I have a service A that uses 1-way SSL and also 2-way SSL to make secure requests to service B. 1-way SSL is specified by Tomcat config, I provide keystoreFile, keystorePass, enable SSL, etc. 2-way SSL is implemented using JSSE on the client…
agerrr
  • 1,253
  • 5
  • 14
  • 24
3
votes
1 answer

ssl_error_rx_record_too_long - client and server SSL certs for the same IP

I'm implementing mutual SSL between service A and service B. Service A uses both 1-way and 2-way SSL. 1-way for the communication between a user and website A, and 2-way SSL to forward requests from that user to the service B in a secure way. 1-way…
agerrr
  • 1,253
  • 5
  • 14
  • 24
3
votes
1 answer

What is the FQDN for localhost PHP?

I'm using the CodeIgniter (CI) PHP framework. It has issues when I do certain functions with the FTP class. A user recommended I try connecting to FTP under the FQDN. My question is what would that be for localhost?
STEELHE4RT
  • 215
  • 3
  • 11
3
votes
1 answer

Validate a FQDN

I found this regex at http://gskinner.com/RegExr/ to validate a FQDN domain: (?=^.{1,254}$)(^(?:(?!\d+\.|-)[a-zA-Z0-9_\-]{1,63}(?
Juancho
  • 629
  • 7
  • 17
2
votes
1 answer

What is the proper way to get FQDN of current host?

For some time I was using code: hostname = Socket.gethostbyname(Socket.gethostname).first taken from here. But, as the comment said - it's deprecated, and now both rubocop and ruby itself are complaining: =$ ./z.rb ./z.rb:5: warning:…
chooboo
  • 51
  • 5
2
votes
1 answer

How to access AKS cluster using FQDN

I am using Terraform for cluster provisioning This my script resource "azurerm_resource_group" "rg" { name = var.resource_group_name location = var.location } # Private DNS resource "azurerm_private_dns_zone" "ahasa-private" { name …
Mands
  • 171
  • 1
  • 3
  • 14
2
votes
0 answers

Why Java failing to resolve FQDN address mapped to IPv6 address?

I am trying a simple program that will take FQDN/hostname as input and return the IPv6 addresss mapped to that FQDN configured at the DNS server try { InetAddress add= InetAddress.getByName("SCP1.xyz.com"); …
Ankit
  • 99
  • 8
2
votes
1 answer

Assign FQDN for Internal Services in a Private Kubernetes Cluster

I setup a private K8S cluster with RKE 1.2.2 and so my K8S version is 1.19. We have some internal services, and it is necessary to access each other using custom FQDN instead of simple service names. As I searched the web, the only solution I found…
Mehdi Bizhani
  • 21
  • 1
  • 5
2
votes
1 answer

python fully qualified domain name

I am using Python 3.7 socket to get the FQDN, fully qualified domain name. It works for some, e.g. socket.getfqdn('indiana.edu') 'www.indiana.edu' and doesn't work for others, e.g. socket.getfqdn('google.com') 'lga34s18-in-f14.1e100.net' Using…
David Makovoz
  • 1,766
  • 2
  • 16
  • 27
2
votes
2 answers

What's the DNS name for services in different namespaces in k8s?

In namespace A, I have a service nginx running. In namespace B, I can use nginx.A or nginx.A.svc.cluster.local to get access to the nginx in namespace A. So what's the difference between these two? Which one is more recommended? Why?
injoy
  • 3,993
  • 10
  • 40
  • 69
2
votes
1 answer

react front-end, node js back-end, monogo db deployment as microservices at kuberenetes minikube

My app is React Front-end <------> Nodes js back-end <------> mongodb Source code can be downloaded from here You can deploy above ./setup.sh command at minikube kubernetes 1) mongoDB deployment with clusterIP Type service resource 2) Backend…
A-P
  • 198
  • 1
  • 12
2
votes
2 answers

access the application deployed on Azure Container Instance

I am new to Azure.I have deployed my application on Azure Container Instance.It has also generated an FQDN,but when i try to access the deployed application with this FQDN via postman or browser it dosent works.Kindly let me know what extra…
2
votes
1 answer

How to get FQDN of Azure VM in ARM template output

Following is my template to create Public IP address. Now I want to get the output of fqdn for PublicIPAddress. "name": "[variables('publicIPAddressName')]", "type": "Microsoft.Network/publicIpAddresses", "apiVersion": "2018-06-01", …
Galet
  • 5,853
  • 21
  • 82
  • 148
1 2
3
11 12