Questions tagged [deployment]

Deployment is the process or collection activities that make a system available for use.

Deployment is the process or collection activities that make a system available for use.

It can refer to hardware, software, or both and has varying levels of automation, from the completely automated "no-touch" deployments to completely manual ones. Wikipedia has a page dedicated to software deployments here.

1293 questions
4
votes
1 answer

Need help automating thunderbird deployment with our own root certificate

We are in the process of setting up a self-hosted mail solution in our lab and we're required to be our own CA. The problem we're having is that Thundebird is complaining that our root certificate is untrusted, even though we know it's valid. The…
4
votes
3 answers

Redeploying Office to a single client after manual uninstall

One of our client PC's recently got random crash issues with MS Word. I manually uninstalled Office 2003 locally on the client, ran "gpupdate /force /boot" and expected the client to reinstall Office after rebooting. It didn't. I've ran gpupdate a…
pauska
  • 19,620
  • 5
  • 57
  • 75
4
votes
2 answers

How do I stop Windows 10 Install from modifying BIOS boot settings?

We're setting up some systems to PXEboot via iPXE and, depending on a master server state, either boot normally or reimage via wimboot and MDT. The systems are configured to boot from the network first. iPXE and wimboot are both running under…
aggieNick02
  • 286
  • 2
  • 9
4
votes
0 answers

Prevent Gunicorn from loading slowly after an inactive period?

My Django project is running on gunicorn. Sometimes loading a page (and oracle procedures calls related) takes a lot of time. This occurs 90/100 when the server remains inactive for some minutes. How can I approach to this problem? wsgi.py import…
Sam
  • 151
  • 4
4
votes
1 answer

Ansible: Share inventory variable between groups

I have a playbook with two plays, one local and one remote. I have two inventories, one for test and one for production. Each inventory defines a variable for the remote group, but I would like to use the variable in the local play without using…
chiborg
  • 1,083
  • 2
  • 13
  • 27
4
votes
1 answer

SERVER2012 R2 Core access denied when deploying domain controller from remote system

I have installed Windows Server 2012r2 Core edition and want to promote it to my first domain controller. I intended to do this with a Server Manager installed on a client computer. I connected to the server with the Server Manager and was able to…
4
votes
1 answer

Salt minions keep losing connection to master

I'm testing Salt. I have a simple test setup of 3 VirtualBox VM's -- with salt-master running on one of the machines and salt-minions running on the other 2 VM's. I can start either of the salt minion VM's and they will connect to the master and…
Brendan Abel
  • 270
  • 1
  • 3
  • 13
4
votes
2 answers

Elastic Beanstalk .ebextensions config script not running on Windows deployment

I have a Microsoft ASP.NET app that I am deploying successfully via Elastic Beanstalk to a server. However, I am trying to run a few config files under the .ebextensions in order to set up certain packages that are used by my application. For…
agarcian
  • 141
  • 1
  • 4
4
votes
1 answer

ansible command with_items

In ansible 1.5.4 the following command worked flawlessly: - name: Generate postfix dhparams command: "{{ item }}" with_items: - openssl gendh -out /etc/postfix/dh_512.pem -2 512 creates=/etc/postfix/dh_512.pem - openssl gendh -out…
Zulakis
  • 4,153
  • 14
  • 48
  • 76
4
votes
2 answers

When using eb CLI is it possible to deploy without using git?

Is there any way to use the AWS EB cli to just push the current state of my project rather than a specific commit? Perhaps there are alternative values than git to the sc parameter in config.yml?
4
votes
2 answers

WDS PXE client boot getting error: 'Windows Deployement Services: PXE Boot Aborted'

Created a new WDS (VM) server, installed WDS role, added boot/install image from Win7 Pro SP1 x64 volume license disc. Client I am booting is 64-bit but then I get this: Downloaded WDSNBP from 192.168.1.10 WDS.contoso.com Press F12 for network…
gregg
  • 629
  • 4
  • 11
  • 26
4
votes
1 answer

Deploying applications in sets with chef

I am new to chef and planning to implement it in our production environment. We are planning to use chef to maintaining the system state/configuration and as well as for application deployment. During the time of application deployment, the…
Yaalie
  • 175
  • 1
  • 2
  • 8
4
votes
2 answers

Java 8 Update 25 Install Via GPO Not Working

I am trying to set up our Active Directory DC to automatically install Java 8 Update 25 (jre1.8.0_25.msi) using Group Policy. When attempting to add the jre1.8.0_25.msi package in the GPO at Computer Configuration > Policies > Software Settings I…
Jonathon Anderson
  • 288
  • 1
  • 3
  • 10
4
votes
0 answers

Does AWS Elastic Beanstalk Swap Environment Url swaps environments for git push?

I have read the docs for zero downtime on aws but cant seem to understand what happens in this scenario? I have a environment running in production called 'red' I duplicate the environment as 'blue' I use eb init on my app to push to the new…
4
votes
2 answers

How to check nginx config but without copying of new config file into nginx directory?

I have deployment script that copies include new nginx config file. I need to check nginx config by using nginx -t before deploying new application version. Is it possible to check nginx config of particular file like?: /usr/nginx/sbin/nginx -t -c…
Erik
  • 203
  • 2
  • 5
  • 14