Questions tagged [configuration]

Configuration is a general term that can refer to the arrangement of functional units according to their nature and characteristics. Also, it can refer to software configuration which more suitable for server-related topics.

Configuration is a general term that can refer to the arrangement of functional units according to their nature and characteristics. Also, it can refer to software configuration which more suitable for server-related topics.

A configuration file is usually a text file associated with a specific software which describes the initial settings of the software. Some applications provide tools to generate configuration files.

Some computer programs only read their configuration files at startup. Others periodically check the configuration files for changes. Users can instruct some programs to re-read the configuration files and apply the changes to the current process, or indeed to read arbitrary files as a configuration file. There are no definitive standards or strong conventions.

2704 questions
1
vote
2 answers

Can the Citrix Receiver be set to log off rather than disconnecting when Windows restarts?

I've been placed in a situation where I'm supporting Citrix end users with no visibility on the Citrix server. One problem I've run into is users restarting their PC without logging out of Citrix first, which causes disconnected sessions and other…
bshacklett
  • 1,378
  • 4
  • 19
  • 39
1
vote
1 answer

How can I use different database realm for different "instances" of an application for authentication?

I have a web application on apache/httpd. By copying this application and putting it in a different directory under document root, I creat a new instance of that application. I do set up a new database for each instance as well. I use database…
Nicsoft
  • 203
  • 6
  • 15
1
vote
1 answer

nginx configure can't find upload module's config while it's definitely there?

I'm trying to install nginx from source, with nginx upload module included. However I'm running to this weird error: ./configure --with-http_ssl_module --with-http_flv_module --with-http_gzip_static_module --with-mail --with-mail_ssl_module…
1
vote
1 answer

Apache keeps referencing old index.html

I just installed apache 2.2 on windows and can't get it to react to my changes. It keeps showing the 'It works!' in the default index.html file. I've changed the DocumentRoot, < Document, and have a index.html in the new location. DocumentRoot…
Warren
  • 13
  • 1
  • 4
1
vote
1 answer

No Response message from any snmpget or snmpwalk

I have installed net-snmp on my Windows XP and I have configured the SNMP service on my router and my machine, but when I try to make an snmpwalk or an snmpget, I receive always a message No response or time-out: >snmpwalk -v 1 -c public…
hanem
  • 11
  • 1
  • 2
1
vote
2 answers

Multiple Tomcat Services on port 80

I have a Tomcat server that that I want to run multiple webapps each with a different domain name. Given the configuration below, I want to be able to connect to http://webapp1 and get to its webapp and http://webapp2 and get to that one. Currently…
Drew
  • 243
  • 1
  • 7
1
vote
1 answer

Is it possible to reduce this nginx proxy configuration?

I'm having an hard time trying to find out how to reduce this "repeated lines" for my NGinx configuration, just to change one property : server { #listen [::]:443 ipv6only=on; ## listen for ipv6 listen 443; server_name…
Cyril N.
  • 624
  • 1
  • 10
  • 36
1
vote
1 answer

SharePoint 2010 Server Configuration Error -> "Cannot connect to database master"

I recieve the following error when I try to configure SharePoint 2010 Server: "Cannot connect to the database master at SQL server at [computer.domain]. The database might not exist, or the current user does not have permission to connect to it." I…
Chrish Riis
1
vote
4 answers

Getting a new website to work correctly on IIS

This is probably a really simple question but it's causing us problems. We have a small company intranet with office staff and students who attend our school. We wish to give the students access to one website on the shared office server. The…
Toby Allen
  • 757
  • 2
  • 10
  • 24
1
vote
1 answer

Apache virtual host config not working for one hosts

I am new to configuring Apache. I have two applications that I need to run locally, they are running on different servers - one on jboss and the other on Jetty. Now both of them use the same Apache server for serving static files. I resolved the…
SoltanG
  • 11
  • 3
1
vote
1 answer

How to manage the configuration of several Linux client systems?

I am managing a number of machines (about 20, their hardware is quite different) which can be used by people in my college. Both ArchLinux and Ubuntu are installed on these machines, and I'd like to manage in a centralized way the configuration of…
peoro
  • 125
  • 4
1
vote
1 answer

Tomcat Workers - Connecting Tomcat and Apache

I'm trying to resolve an issue about connecting Apache-HTTPD and Tomcat with mod_proxy_ajp. From reading I found that the problem might be the number of workers in HTTPD and Tomcat. So I try to find the worker's definition in the Tomcat but I…
baba smith
  • 111
  • 2
1
vote
1 answer

Apache2 keeps redirecting

I trying to keep the user on the url www.mydomain.de, but Apache uses a 301 Permament Redirect to mydomain.de .How can I prevent this? httpd.include for the vhost ServerName mydomain.de:80 ServerAlias …
Henrik P. Hessel
  • 400
  • 3
  • 18
1
vote
1 answer

MySQL - Changing FT_MIN_WORD_LEN (my.ini)

I've recently asked my server administrator, for my Windows dedicated server, to change the MySQL configuration file (my.cnf) to allow search words of 2 characters or more, from the default of 4. They said they have changed it, restarted MySQL and…
1
vote
2 answers

How i can set an index with parameters under nginx?

under Apache I can set the index very easy. Like: DirectoryIndex index.php?parameter=xyz How can I set this in nginx? I had tried: index index.php?parameter=xyz but I get an 403 error.
Skyhawk
  • 11
  • 1
  • 2