Questions tagged [configuration-management]

Configuration Management refers to establishing and maintaining standardized system configurations within an organization. This tag encompasses the process of defining the configuration profiles, and the software used to manage and deploy it.

Configuration Management refers to establishing and maintaining standardized system configurations within an organization.

This tag encompasses the process of defining the configuration profiles, and the software used to manage and deploy it, such as , , and .

370 questions
1
vote
4 answers

How do big internet shops manage hosting services provisioning and configuration?

We're starting to expand our hosting business and I'm wondering how big hosting providers manage their services, like creating directory structures and configurations in email servers, web servers, db servers, and the like, in conjunction with…
Luke404
  • 5,708
  • 3
  • 44
  • 58
1
vote
1 answer

Cataloging web/db/app servers in an organisation - Excel/Wiki/?

I've inherited "ownership" of various servers (the hardware itself and server software that runs on in - lots of Apache/Oracle/MySQL) with a wide variety of configurations. I'm a developer - I've been thrown into a Team Leader/Systems Support role…
Veronica
1
vote
1 answer

configuration Manager PXE boot all machines

Im wonder how to configure Config Manager 2007 R2 to allow PXE boot to all machines (Its password protected) without every user getting a message saying they can install windows. I would consider it acceptable if the users can reinstall windows on…
EKS
  • 535
  • 1
  • 5
  • 14
1
vote
1 answer

Network configuration tools for Debian (or ubuntu)

During the initial Debian setup, we are asked simple questions to configure network interfaces. I would like to know is there are some interactive (but something terminal-based, no X11) tools to do the same but after this initial installation. For…
ascobol
  • 278
  • 2
  • 13
1
vote
2 answers

Used SQL Svr 2008 Config Manager to Set Service Account to Local System: What Did It Change?

Direct shot to foot moment... While setting-up individual non-admin accts for MSSQLSERVER services, I temporarily set Server service login to Local System account. I remembered later that: SQL Server Configuration Manager performs additional…
1
vote
1 answer

Are there any good references coparing Software Development CM best practices to IT CM best practices?

I have spent my career on the software development side of things and in the latter part have become more and more involved in the realm of Software Configuration Management. Now I am moving into an IT group and need to ramp up on CM practices from…
dkackman
  • 113
  • 4
1
vote
1 answer

Centralised configuration management for basic linksys routers?

Does anyone know if its possible to install a custom router firmware, such as dd-wrt and then use a central config management tool to push/pull changes? The setup here involves each office having their own router, and as the 'ISP' we need to…
1
vote
2 answers

Linux clustering over WAN links

I am working on a project that would require the following : - Central administration of multiple servers over multiple locations - Secure connections between multiple locations - Manage multiple servers configurations FACT There will be from…
Embreau
  • 1,277
  • 1
  • 9
  • 10
1
vote
1 answer

CouchDB deleted database shards

Currently running clustered CouchDB v3.1.1 on an AWS EC2 Instance q=2 n=3 Number of Nodes: 1 I have moved the database directory to another drive on my VM. But can't find any on the documents regarding the files under /var/lib/couchdb/shards or…
1
vote
0 answers

How to handle and avoid unmanaged system state with configuration management?

When managing the state of a server using a configuration management tool (e.g. salt, puppet, ansible), one can quite easily develop 'unmanaged' state through application of successive versions of the configuration. For example, one could go…
Rob Gilton
  • 111
  • 1
1
vote
1 answer

How to do a git push using ansible

I'm using Ansible to make a pull i do this tasks: - name: pull from git git: repo: git@gitlab.com:xyz.git dest: /root/Development/abc update: yes version: master Note: Here the remote user is root My…
Mercer
  • 113
  • 5
1
vote
2 answers

Breaking down one prometheus.yml file?

I am using Prometheus for our monitoring and I have a lot of configs (our prometheus.yml main config file is 8000+ lines long). I would like to divide this out into logical groupings so that it becomes much readable. I came to know that Prometheus…
1
vote
1 answer

dividing line between developer and sysadmin for server patch management

I know this question probably doesn't go here. but I dont know which overflow site to use. We have a web server that we use for customers to access our things. Our IT/security team believes it is on my developer to keep the system patched for…
bart2puck
  • 147
  • 1
  • 7
0
votes
1 answer

Nginx: Limiting number of connections for all content types with exceptions

I'm limiting number of simultaneous connections from one $remote_user to n using conn_limit It works like a charm. However, I will be thrilled to find a way to add exceptions to this. I want user to be able to get *.jpg and *.sql files in as many…
0
votes
1 answer

Nginx: restrict number of connections per basic auth user

Got nginx serving several big files. Users get access through basic authentication. htpasswd I want to curtail simultaneous download of files to 5 connections max PER USER. There are more than 1 user getting access through 1 IP address so it is not…