Questions tagged [server]

A server is a running instance of a software application capable of accepting requests from a client and giving responses accordingly.

A server is a running instance of an application (Software) capable of accepting requests from the client and giving responses accordingly.

Servers can run on any computer including dedicated computers, which individually are also often referred to as "the server".

In many cases, a computer can provide several services and have several servers running. The advantage of running servers on a dedicated computer is security. For this reason most of the servers are daemon processes and designed by the designers in such a way that they can be run on specific computer(s).

There are various categories of servers. Please refer to this Wikipedia page to learn more about the subcategories of servers.

25074 questions
3
votes
0 answers

Puma-dev not working on xip.io

With pow, I could access my app on another computer or phone on the same network at myapp.192.168.xx.xip.io, and it worked just fine. But since switching to Rails 5 and puma-dev, it doesn't work. The browser gives me the error cannot open the page…
Life4ants
  • 683
  • 2
  • 8
  • 24
3
votes
0 answers

R shiny server: Error 500 can't set servers after they are sent?

Hey I'm new to Rshiny servers and I set it up but when I put in my new application I get the failed to render error 500 page: Can't set headers after they are sent. error , what could this mean(headers?) and how would I go about fixing…
James Hennessy
  • 397
  • 6
  • 14
3
votes
2 answers

In python how can I get the date and time of my local server?

I am aware of the datetime library. However, on top of knowing the date and time of the world, I also need to know the date and time of the local server my application will be running on. The reason for this is because my local server is not…
Zarif Akhtab
  • 95
  • 2
  • 9
3
votes
1 answer

Node.js store images. Get those images in front-end

I have never done anything similar to this and after investigating for a while I didn't find what I wanted. If that exists I was probably too stupid to notice / understand it. Admin side: In the website I am developing (in an admin page) I have a…
DigitalEvolution
  • 345
  • 2
  • 5
  • 16
3
votes
2 answers

How do I serve a Polymer web app?

I want to deploy a Polymer web app. Since Polymer seems to manage routing with , can I just install the Polymer CLI on my server and run polymer serve? Or should I make a backend, and if so, how do I tie it to the Polymer frontend?
Queder
  • 310
  • 3
  • 11
3
votes
0 answers

android getting multiple response at a time

I am trying to send a form that contains some text fields and an image. I wish to send all this data to a single URL. I learned to send texts and later I learned to send image. Now the problem is when I am sending the form data to the server.…
3
votes
1 answer

Is it possible to pause/suspend (don’t accept(2) on the socket) a Node.js server?

Goal: To have a Node.js server where only one connection is active at a time. I can temporarily remove the connection event listener on the server, or only set it up once in the first place by calling once instead of on, but then any connection that…
Lucas Werkmeister
  • 2,584
  • 1
  • 17
  • 31
3
votes
2 answers

Simple Golang GraphQL Server

Does a simple & working "Hello World!" GraphQL server code in Go exist? There is a deficiency in tutorials concerning that topic, especially because graphql-go/graphql is currently a work-in-progress.
3
votes
0 answers

Squid proxy server with multiple IP automatically changes the outgoing address

I have a squid proxy server with 10 public IP addresses, I am using it precisely for the purpose of outgoing address. I want this multiple IP addresses to be randomly elected and changed every 2 minutes when the requests go out of the server. is…
Nashwan Mustafa
  • 121
  • 2
  • 8
3
votes
0 answers

in google cloud platform Server key (auto created by Google Service) is not creating on new project creation.

in google cloud platform Server key (auto created by Google Service) is not creating on new project creation.
3
votes
1 answer

Tomcat Parallel Deployment - Go to older version

Let's say that I have two deployments running on my Tomcat: myApp##1.war myApp##2.war So fresh sessions will go to the 2nd app; but is there a way to get into the 1st app? Thanks!
Fernando Fradegrada
  • 973
  • 1
  • 9
  • 26
3
votes
1 answer

Controlling the state of appsink pipeline depending on its RTSP appsrc clients

I have a hierarchy like below: SourcePipeline GstElement pipeline(has a videotestsrc and appsink) a GstAppSrc pointer array to push samples GstRTSPServer GstRTSPMediaFactory (has a GstAppSrc named "appsrc0" and mounted…
Mert Can Ergün
  • 399
  • 5
  • 14
3
votes
0 answers

Redirect POST request to another url:port while retaining its data in IIS Server

I want to redirect the POST request to another url:port with POST data intact but when i am trying to do it IIS server is issuing GET request and losing the data. The web.config action method is as follows :-
Mani
  • 508
  • 1
  • 7
  • 18
3
votes
2 answers

Resetting http handlers in golang for unit testing

I'm testing an http server in golang and everything seems pretty smooth except for one annoying thing. At some point, when I'm configuring the server, before performing a http.ListenAndServe I register an handler with http.Handle("/", myrouter) ,…
dev_mush
  • 2,136
  • 3
  • 22
  • 38
3
votes
0 answers

Red5 Error "Scope Not Found"

I have created a Red5 server project in Eclipse with the Red5 plugin. But every time i start the server i get an error "scope not found" [WARN] [RTMPConnectionExecutor-4] org.red5.server.net.rtmp.RTMPHandler - Scope not found …