Questions tagged [configuration]

Configuration is the process of specifying the settings used for a system or application

Configuration is used to customize the behavior of a program. It is commonly done using static configuration files that can be composed in any common text editor, but some applications provide tools (sometimes even with graphical interfaces) to create, modify, and verify the syntax of their configuration files.

Some 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.

18012 questions
9
votes
1 answer

How to Create a Configuration Section That Contains a Collection

There is a great question and answer here that illustrates how to create a custom configuration section that is able to parse configuration of the following form into .Net objects:
Jeff G
  • 4,470
  • 2
  • 41
  • 76
9
votes
1 answer

NullPointerException at Lucene-Appengine's SegmentIndexInput readByte method

I am getting the following error trace from running Lucene. I am including the code segment that prompted the error. The specific project/connector is Lucene for Appengine CODE public static void resetAllIndicesUsingDatastore() { …
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
9
votes
4 answers

vim cant map to :tabnext

I have the following mappings in my .vimrc: map :tabprevious nmap :tabprevious imap :tabpreviousi map :tabnext nmap :tabnext imap :tabnexti I want to switch…
f00860
  • 3,486
  • 7
  • 41
  • 59
9
votes
4 answers

Entity Framework 6: Unable to load the specified metadata resource

First, this is related to another question here on SO: I've read and debugged my issue with the following SO article & blog: MetadataException: Unable to load the specified metadata…
9
votes
1 answer

EdgeNGramFilterFactory change in solr5

Short version: Does anyone knows if something happened with EdgeNGramFilterFactory for solr5? It used to work fine on solr 4, but I just upgraded to solr5 and the cores having this fields using this filter refuses to load ... Long story: This…
dcg
  • 1,144
  • 1
  • 22
  • 38
9
votes
2 answers

Can I have logging.ini file without root logger?

Here is how my logging.ini file looks like:…
Tejas
  • 189
  • 2
  • 9
9
votes
9 answers

Chef server error on create user (/etc/opscode/pivotal.rb does not exist)

I am extremely new to chef and I am attempting to create a chef server running on a Digital Ocean Ubuntu 14.04 droplet. I am using this guide for the install. I download the .deb and installed it fine. I then run chef-server-ctl reconfigure which…
0C3D
  • 348
  • 3
  • 11
9
votes
1 answer

Spring Boot alternative index page

My app uses Spring Boot on the back end and a SPA (Angular) site on the front end. Currently I am serving the index.html page from the webapp folder, which works automatically no configuration needed. Now I integrated a build process for the front…
KenavR
  • 3,769
  • 9
  • 37
  • 47
9
votes
1 answer

Disable logging with hibernate from maven

I have recently added hibernate to my pom.xml, and it is working fine. However, the logging is irritating and i'm not sure how to turn it off or limit the level of it (I don't even know exactly what it has included to start all this logging). I am…
ThePerson
  • 3,048
  • 8
  • 43
  • 69
9
votes
1 answer

What role to files other than 'config.yml' play in my AWS EB configuration?

I understand that AWS Elastic Beanstalk only needs a single configuration file in the .elasticbeanstalk directory, but (1) when I run eb config I get an additional file, myenv.env.yml; and (2) my IDE threats additional files as important to push, by…
orome
  • 45,163
  • 57
  • 202
  • 418
9
votes
3 answers

How to export/import NetBeans settings (like theme, editor colours etc.)?

IntelliJ IDEA (as of version 14.0.2) has an option to export/import user preferences with menu options 'File->Export Settings...' and 'File->Import Settings'. I wonder what is the simplest way to achieve a similar effect in NetBeans 8.0.2? Note: I…
Alex Yursha
  • 3,208
  • 3
  • 26
  • 25
9
votes
2 answers

Set cmake target name for debug and release configuration

I am trying to differentiate between a debug and release build. If a debug build is in progress I want to install myLibd in /usr/local/lib. If a release build is in progress I want to install myLib in /usr/local/lib. Here is my…
Anonymous
  • 4,617
  • 9
  • 48
  • 61
9
votes
2 answers

Log4j2 File Inclusion : and similar to Logback

Does Log4j2 support file inclusion mechanism like Logback does ? This is for including parts of a configuration file from another file (containing appenders, loggers etc.) As an FYI - Here is how it works in Logback: Joran supports including parts…
codehammer
  • 876
  • 2
  • 10
  • 27
9
votes
1 answer

Laravel environment specific package configuration

Laravel is pretty clear on how to set up environment specific config. It also has a method for creating package configuration What I have not been able to find is an example of creating environment specific package configuration. Is there a way to…
Jeremy French
  • 11,707
  • 6
  • 46
  • 71
9
votes
3 answers

Is it OK to use a long non-ascii name for the user.name Git configuration?

My full name is a bit long and contains a non-ascii character ã. I was wondering if I should use it in git config --global user.name or just keep it short (and what implications this decision would bring along). In other words, are there any…
Hugo Mota
  • 11,200
  • 9
  • 42
  • 60