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
0
votes
0 answers

Apply reg import in MDT Task Sequence

I have a couple Registry files that I'm trying to import through MDT. I created a folder called Reg inside the scripts folder on the MDT server and put the files in there. I added individual command line task sequences with the line reg import…
Rick
  • 117
  • 6
0
votes
1 answer

Not able to access the ejabberd server even in ejabberdctl if ejabberdnode name is changed in GCP deployment using environment variable

As a first step in using ejabberd cluster in GCP, I tried to change the node name using the environment variable "ERLANG_NODE_ARG=ejabberd@main" as mentioned in the readme file. But I am not able to access the ejabberd server in the service. I tried…
0
votes
1 answer

How to deploy an .ear file in glassfish?

https://docs.oracle.com/cd/E19798-01/821-1757/6nmni99aj/index.html as-install/bin/asadmin deploy war-name The docs mention this command, but where will it be deployed isn't mentioned. Does it automatically realizes in which domain it should be…
achhainsan
  • 123
  • 7
0
votes
1 answer

Google Firebase Cloud Functions: Error: Your project is being set up. Please wait a minute before deploying again

I have a Google Cloud / Firebase project, let's call it A, to which I can normally deploy Cloud Functions via the firebase deploy command. Recently I've had to set up a parallel project that is supposed to run the same functions, just with a…
0
votes
2 answers

Deploy iso through e.g. dd using pxe

Our current means of deploying machines is to mirror the nvme drive from a master drive before installing it in a PC. We are deploying windows on machines that will go to customers. As such, aad (and therefore autopilot) are out of the question. I'd…
0
votes
0 answers

Error 500.19 in server with IIS 10

I had a Web Service running in net 3.5 (I know, so old) and I migrate it to Net 4.6. I completed the migration in local, but when I deploy the web services in the server I get an 500.19 error. I review the log event, the traces, web.config... but I…
Kenzo_Gilead
  • 105
  • 6
0
votes
0 answers

Remotely initiating an unattended Windows reinstallation on multiple machines from a partition

I am aiming to achieve the following: Install Windows from scratch on Disk 0 partition Prestage the machines remotely before reinstallation (using a custom tool I am developing). The tool ensures that the Windows installation is fetched to the…
0
votes
0 answers

How to deploy a MSI that needs a per-machine parameter?

I'm developing a MSI package that installs my product. I do my best to follow all the best practice, however, there is one thing I haven't found anywhere how to do best. I need to supply one parameter that is computer-specific, i.e. I'd like to run…
zajic
  • 1
  • 1
0
votes
0 answers

Why cant I get any kind of traffic from my AWS EC2 instance with a public IP?

Complete beginner to networking and im trying to deploy a simple express app on a windows instance of ec2 and I cannot find a single resource that explains the steps I need to take to make it happen without having a ton of technical terms and people…
Thugsy49
  • 1
  • 1
0
votes
0 answers

This site can’t be reached in kubernetes minikube

I applied my react kubernetes manifest file on minikube with the service I am trying to access it on the browser but I am getting error This site can’t be reached deployment.yml apiVersion: apps/v1 kind: Deployment metadata: name: frontend …
Samson
  • 113
  • 5
0
votes
0 answers

GCP Cloud Build installation of composer fails because checksums don't match

The build of my Laravel 9 app is broken. During the deploy the build stage always fails because the installation of composer fails due to unmathing checksums. Build logs: === PHP - Composer - Install (google.php.composer-install@0.0.1) === DEBUG:…
0
votes
0 answers

Possible to serve 100% traffic during upgrade and rollback?

My spring boot application is deployed with 6 replicas on Kubernetes using Helm charts. It is currently deployed under load test with 6K TPS traffic. We wanted to test the behavior of ongoing traffic during upgrade of application using helm upgade.…
Nish
  • 101
  • 2
0
votes
0 answers

How to import certificate file in firefox for deployment?

I tried the settings in this link to use the system default certificate store in firefox but not working. The firefox is not showing certificates from system store. It is using its own section, which is in the profile folder of firefox in appdata…
user2331760
  • 155
  • 4
  • 12
0
votes
0 answers

GCP | Any documentation around automating and scheduling the data transformation pipelines?

I am curious to understand if there is any documentation around automating and scheduling the data transformation pipelines using GCP+BigQuery+JupyterLab. For instance, if there are 6 BigQuery tables under a project. I would like to design data…
0
votes
0 answers

how to activate venv (python) on server production

I created a app based on Vuejs (frontend) and Node.js/Express (backend), both have domains and they are online on web. Inside the backend, I have some files scripts written in Python which I also had to install some external libraries (pandas,…