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
15
votes
9 answers

failed to run Kubelet: validate service connection: CRI v1 runtime API is not implemented for endpoint

I have installed kubelet 1.26.0 on Ubuntu 22.04 using apt install kubelet command, but when I try journalctl -xeu kubelet I get the following result: ░░ ░░ The unit kubelet.service has entered the 'failed' state with result 'exit-code'. Dec 14…
best_of_man
  • 367
  • 1
  • 3
  • 12
14
votes
3 answers

Override php-fpm pool config values with another file

Having to customize the php-fpm pool configuration of a new server, I wonder if it is possible / allowed / recommended to have a new pool file, which name goes alphabetically after the original one, which only has values that override the initial…
Déjà vu
  • 5,546
  • 9
  • 36
  • 55
14
votes
1 answer

Choosing a value for wait_timeout & interactive_timeout in MySQL config?

We have a live server that's being hit hard so we're tying to optimise everything we can. We ran the MySQLTuner script on it (http://mysqltuner.com/) which tells us we should set a value less than 28800 for wait_timeout & interactive_timeout.…
Bart B
  • 3,457
  • 6
  • 31
  • 42
14
votes
2 answers

Edit "server.xml" in Tomcat without restarting server?

I edited the "server.xml" file in Tomcat 8’s conf folder. I added a new Host tag for a new web site. Must I restart the Tomcat server? Can I get Tomcat to parse and apply the newly edited server.xml?
Basil Bourque
  • 851
  • 1
  • 11
  • 22
14
votes
2 answers

nginx: Why I can't put proxy_set_header inside an if clause?

With this configuration: server { listen 8080; location / { if ($http_cookie ~* "mycookie") { proxy_set_header X-Request $request; proxy_pass http://localhost:8081; } } } I have this error when I…
Neuquino
  • 303
  • 2
  • 5
  • 11
14
votes
6 answers

How to configure IIS for SVG and web testing with Visual Studio?

Let's say I have a simple web page with svg image in it: not working If I make this page as static html page and view it directly svg is displayed. If I type the address of this svg -- it is displayed. But when I make…
greenoldman
  • 313
  • 2
  • 5
  • 15
13
votes
2 answers

Why is 14 characters the maximum length for the nginx server_name directive?

I have the following virtual host server { server_name abc.example.com; root /var/www/test/; index index.html; } When running nginx -s reload I get the following error: nginx: [emerg] could not build the server_names_hash, you should…
Virgiliu
  • 231
  • 2
  • 7
13
votes
3 answers

Will a graceful reload of Apache configuration require the SSL Cert password?

I have an apache server running that required a minor configuration update. I want to force Apache to reload the config (e.g. via /etc/init.d/httpd reload or apachectl graceful), but I do not posses our SSL cert passwords. The admin who has the…
Colin K
  • 233
  • 1
  • 2
  • 6
13
votes
8 answers

Can't SSH into a Vagrant Virtual Machine

Local Vagrant machine installed at IP address 10.0.0.23 with hostname lamp-vm. Using vagrant ssh command, I can connect just fine and do everything I need. This creates an error $ ssh vagrant@lamp-vm -v -v debug1: connect to address 10.0.0.23…
csi
  • 1,555
  • 7
  • 23
  • 42
13
votes
8 answers

What is this server doing?

I have a bunch of linux virtual servers left over from a previous IT department. They have names like 'magic' or 'stuff'. I'm not quite sure what they're doing...or if I need them... How would you guys and gals go about finding out the purpose of…
blsub6
  • 1,131
  • 6
  • 25
  • 45
13
votes
6 answers

Is there a etckeeper equivalent for Windows? AKA Windows config revision-control

I want to make a central config file repository so that I can have the changes to any config under revision control (Mercurial). This will include some GNU/Linux boxes (which will use etckeeper), the network equipment's config files, printer's…
Ascendant
12
votes
2 answers

How to ignore a set of Mac addresses in dhcpd.conf?

Is it possible in dhcpd.conf to ignore requests from a set of MAC addresses? Something like this: host vminstances { hardware ethernet d0:0d:*; ignore booting; }
Roberto Aloi
  • 575
  • 2
  • 5
  • 14
12
votes
1 answer

Elastic Beanstalk S3 access via .ebextensions

I have a simple file in my .ebextensions folder: 00-myconfig.config Resources: AWSEBAutoScalingGroup: Metadata: AWS::CloudFormation::Authentication: S3Access: type: S3 …
12
votes
4 answers

How to configure a real domain name for sender address

I tried to sending out an email using php mail() function but it failed somehow, complaining that a real domain name is required. The following is observed in the maillog: sendmail 4984 r25984: from=apache, size=273, class=0, nrcpts=1, …
Question Overflow
  • 2,103
  • 7
  • 30
  • 45
12
votes
2 answers

Apache / httpd not starting automatically on boot

I have apache2 installed on Amazon Linux AMI release 2012.03. I'm able to start it manually just fine, without any errors using /etc/init.d/httpd start. However, it doesn't start automatically when the machine is booted up. It appears that…
Mike Cialowicz
  • 283
  • 1
  • 3
  • 10