Questions tagged [resolve]

Domain name resolvers determine the appropriate domain name servers responsible for the domain name in question by a sequence of queries starting with the right-most (top-level) domain label

Domain name resolvers determine the appropriate domain name servers responsible for the domain name in question by a sequence of queries starting with the right-most (top-level) domain label.

The mechanism in this simple form would place a large operating burden on the root servers, with every search for an address starting by querying one of them.

Being as critical as they are to the overall function of the system, such heavy use would create an insurmountable bottleneck for trillions of queries placed every day. In practice caching is used in DNS servers to overcome this problem, and as a result, root nameservers actually are involved with very little of the total traffic.

652 questions
3
votes
0 answers

NodeJs server on WSL and WSL2 not reachable on browser

Here is my concern : On my pc running on Windows 64, I run a node server (via react) on an OpenSuse Leap 15.1 environment on WSL. React tells gives me the right url to connect on default port 3000, but the URL is not reachable on a browser, wether I…
jska13
  • 147
  • 3
  • 11
3
votes
1 answer

NHibernate query-over with restriction on a referenced entity

I am using Nhibernate with SQL server 2008. I am trying to execute the following code: var localization = session.QueryOver() .Where(idFilter).AndRestrictionOn(x => x.Language.IETFTag).IsLike(tag +…
Max
  • 4,345
  • 8
  • 38
  • 64
3
votes
1 answer

How to access the ingress from all hosts?

I'm setting a bare-metal kubernetes cluster for a web application in a google cloud instance, I am connecting to microservices through an ingress controller. How do I access the ingress controller from all incoming hosts? There is a pod running…
3
votes
0 answers

Not able to do route navigation possibly due to resolve in angular 5?

This is my Login component login-component.ts ngOnInit() { this.loginEventsData = this.route.snapshot.data['loginEventsData']; this.isAppActive = this.loginEventsData["A"][0]["IsActive"]; if (!this.isAppActive) { // I'm…
RS17
  • 773
  • 1
  • 9
  • 23
3
votes
2 answers

Webpack alias with src and file-loader not copying image

I have an issue where file-loader isn't copying images that are using a resolve.alias in the image src. An example: The resolve.alias is: alias: { 'assets': path.resolve(__dirname, 'client/assets'), } And the…
3
votes
0 answers

Target URL inside HTTP Interceptor during resolve Angular

I have an Angular project where I set up a route with a resolve like this: { path: 'participants/detailedView/:participantId', component: ParticipantDetailedViewComponent, resolve: { participant: ParticipantResolve, }, }, I also have a…
Tonio
  • 4,082
  • 4
  • 35
  • 60
3
votes
1 answer

Webpack alias with Angular - Cannot use namespace 'UtilsService' as a type

I have a project with Angular 6, Typescript, webpack 4. I want to use alias in webpack in order to make my import statement clearer. This is the code I have in webpack: resolve: { alias: { assets: `${helpers.root('src/assets/')}`, app:…
Tonio
  • 4,082
  • 4
  • 35
  • 60
3
votes
4 answers

Failed to resolve: play-services-auth-base-license version 11.8.0

I tried to integrate google smart login and SMS SmsRetrieverClient in my project. First thing that shocked me is, on the official documentation of these functionalities(https://developers.google.com/identity/sms-retriever/request#prerequisites),…
3
votes
0 answers

Resolving rails image url in webpacker

I have a Rails 5 app using the webpacker gem. I would like to access the image urls with the hash from the rails asset compilation appended to the end of their file names. here is my /config/webpacker.yml file # Note: You must restart…
wuliwong
  • 4,238
  • 9
  • 41
  • 69
3
votes
2 answers

kafka bootstrap.servers as DNS A-Record with multiple IPs

I have a cluster of Kafka with 5 brokers and I'm using Consul Service Discovery to put their IPs into a dns record. kafka.service.domain.cc A 1.1.1.1 2.2.2.2 ... 5.5.5.5 Is it recommended to use only one domain name: kafka.bootstrap.servers =…
3
votes
3 answers

Davinci Resolve Image Disappear when transform/crop control is selected or clicked

It starts out fine, and the image is where it is supposed to be. When I click on the image anywhere it disappears, and I am left with ... That defeat the purpose for transforming, cropping, etc. Apparently this is not a new problem from my…
Mae Davis
  • 120
  • 2
  • 10
3
votes
1 answer

docker nginx ERR_NAME_NOT_RESOLVED

Running 4 docker containers: server/client/nginx/mongo reverse-proxy The client seems to work on port 4200, I can see my app and routing works. When trying to register a user, I am requesting the below httpclient post to the Docker container called…
oudekaas
  • 325
  • 1
  • 6
  • 21
3
votes
0 answers

Unable to ping or ssh from kubernetes pod

I am unable to reach any server in my network, either ping or ssh. I can do that from my host server but not from the kubernetes pod containers. I have verified both /etc/resolv.conf and /etc/nsswitch.conf on my host machine, they are all…
PMat
  • 2,039
  • 2
  • 29
  • 46
3
votes
1 answer

Query a server and get the results as addrinfo struct

I want to query a specific server, and get the result at the same way as we get it via getaddrinfo. I want to get a addrinfo struct, so I can have the ip, port and a pointer to the next result. I'm using the code below, which query the server I…
Witterquick
  • 6,048
  • 3
  • 26
  • 50
3
votes
1 answer

Docker container cannot resolve website names, but can ping their ip

When I tried to apt-get update in a container based on ubuntu. I got an error like this. Temporary failure resolving 'archive.ubuntu.com'. When I tried to ping the ip of 'archive.ubuntu.com', it's ok. But when I tried to ping 'archive.ubuntu.com',…
aomey
  • 39
  • 3