Questions tagged [deployment]

56 questions
12
votes
4 answers

Linux Bulk/Remote Administration

Beside our internal IT infrastructure, we've got around 500 Linux machines hosting our services for the on-line world. They are grouped in a bunch of clusters like Database A-n, Product A-n, NFS, Backoffice and so on. Furthermore, they are…
mjhennig
  • 263
  • 2
  • 6
7
votes
1 answer

How to automatically launch a lxc container on ssh connection?

I'm attempting to setup a system that automatically creates a new sandbox on a ssh login to use as a temporary jump box into my server. So to do this I was wonder how to setup lxc to spin up a new shell in the container once there is a ssh…
Dwight Spencer
  • 298
  • 2
  • 11
6
votes
1 answer

Deploying filesystem images onto a partition of arbitrary size

I would like to establish a deployment process for Ubuntu machines based on root FS images. I would like to restore the image onto a simply-formatted hard drive (I can completely erase the disk during deployment). I'd rather keep the config simple…
Julik
  • 161
  • 4
4
votes
2 answers

Application deployment over ssh

My job requires frequently updating versions of Centos-compiled software on customers PCs over multiple ssh hops. Recently this got to the point of unmanageable by hand. What software can be utilized to automate the process? What I need is something…
Zeks
  • 141
  • 4
4
votes
0 answers

Create ready gentoo images for deployment

Assume I know exactly what hardware each target machine contains. Can I have reliable way to prepare images for target machines on my computer, which I can just copy over on that other drive and there she goes? This has so many uses: Preparing…
4
votes
1 answer

Where is the appropriate place to deploy web apps?

I am a new sysadmin (by default). We have an ubuntu 14 server with two users. Both users need to deploy web apps to the (production) server. My plan is to create a folder off of root /apps/ and then put each app in a folder there. Then add each…
bernie2436
  • 6,505
  • 22
  • 58
  • 69
3
votes
1 answer

live PHP webapp deployment

I am looking to setup Bamboo to do live PHP deployments (same principles can apply to Jenkins) I would like to be able to do live releases with the push of a button in the Bamboo application. However, I would like to ensure that sessions remain…
Robbo_UK
  • 123
  • 9
3
votes
1 answer

Should I deploy with the same user who is running the website?

I have a website being served by Nginx and I've recently setup travis builds and deployments for it. Nginx is running the website as www-data user. I've created an user deploy so that Travis can login on the server through SSH and deploy the…
3
votes
1 answer

The Safest Way to Deploy a Daemon via Jenkins

I'm developing a system service in Java, and for the deployment I would like to do the following: Copy over the new Initd from the build Stop the service being deployed Overwrite/copy the new JAR/config example Start up the service. Is there a…
monksy
  • 723
  • 2
  • 8
  • 15
2
votes
2 answers

Automation of openldap installation

In my group we often install ldap on new servers. We have two different configurations currently. A mirrored configuration and just a regular standalone configuration. The installation process gets repetitive and is difficult for some team members…
Jerry Saravia
  • 193
  • 1
  • 1
  • 6
2
votes
1 answer

printf -v is an illegal option, in Bitbucket pipeline. And a question about <<

Hello I'm brand new to shell scripting, so sorry if this is trivial. How do you use printf command with the -v option? In our deployment.sh file we have this line printf -v BITBUCKET_COMMIT_str %q "$BITBUCKET_COMMIT" echo 'Initializing new…
adam.k
  • 131
  • 4
2
votes
2 answers

Unable to install rbenv with deployer user in CentOS - Permission denied

I created a new user in CentOS 6.3 using this commands useradd deployer passwd deployer visudo then I added this line to file: deployer ALL=(ALL) ALL Fine! Now I trying to install rbenv, to deploy an RoR application. I followed this steps: cd…
Rodrigo
  • 212
  • 1
  • 4
  • 11
2
votes
2 answers

How to install Nitrux OS using znx?

I want to check out Nitrux, which can be "deployed" using znx (how-to here). znx does not seem to open correctly in Fedora, so I would like to deploy it using the terminal. The how-to says that I should install it on a partition with at least 4…
User12547645
  • 183
  • 2
  • 6
2
votes
1 answer

How to deploy a Java application

I made java application that's supposed to be executed as daemon. I am using an Amazon Linux AMI, which uses SysVinit and I already have an init script for my daemon, I am just a bit confused on where to place the files. At first I was going to…
mFeinstein
  • 513
  • 2
  • 7
  • 12
2
votes
1 answer

Deploy libs in hard-coded dir

I have a set of libraries and some apps that depend on it. Some of these libraries names might conflict with already installed libraries. The easiest way for me to deploy them would be Install the libraries in a fixed-path…
Julien
  • 193
  • 7
1
2 3 4