Using 'Click to Deploy', I already deployed LAMP stack.
Now i want to use 'Click to deploy'and then deploy Jenkins in the same GCE instance(dont want another fresh GCE instance)
Is there an option to use 'Click to deploy' for multiple tools or only once per GCE instance?
What is the best approach to install multiple tools using Click to deploy or Google Launcher under single Google Compute Engine instance?
Plz someone help!
Bitnami developer here.
Right now you can't use "click to deploy" twice in the same GCE instance.
You could access your instance via ssh, download bitnami jenkins stack and install it. Take into account that you'll be installing another apache server so you won't be able to use port 80 again (as well as with mysql).
Related
I am facing some issue in wildfly on Administration console dashboard. We used helm chart to deploy wildfly and used bitnami helm charts.enter image description here
To access the Administration console you should contact the administrator responsible for WildFly installation and ask him to provide you with the correct address.
Bitnami Engineer here, I was able to reproduce the issue, so I going to create an internal task to investigate more about this. We will update the thread when we have more information.
I have existing MEAN stack application. I found more tutorials, but I cannot find anything about deploying existing app to Docker. Is this possible?
As long as you can get the sources of your project on your deployment platform (the Ubuntu server), you can then follow the guide "Dockerizing a Node.js web app".
It shows how to create a simple web application in Node.js, then build a Docker image for that application, and lastly run the image as a container.
You can see a more complete example at Semaphore.
I've searched the whole internet for this. I have a website that is run by a hosting company. All the tutorials to install Jenkins assume I'm running my own Linux machine and can perform various commands.
Is there a way I can install Jenkins on this website using only FTP?
Thanks.
Maybe. If your hosting company provides Tomcat (or another servlet container/J2EE server like JBoss) then you can install Jenkins as a webapp inside of Tomcat. Typically it just involves placing the jenkins.war file in $TOMCAT_BASE/webapps.
If your hosting company does not provide Tomcat and doesn't allow you to run Java yourself from a shell then AFAIK you can't run Jenkins.
I am trying to setup a continuous integration environment using Ubuntu VM on Amazon EC2 (which has rails installed already) and Jenkins. But Jenkins creates its own user on the VM and cannot find the rails path because its in the other user's environment.
So can someone provide me a step by step installation guideline for the same.
Thanks
Does anyone have done the rails application deployment on EC2 using poolpary gems and Chef server(not Chef solo). Please share your experiences if you know some blogs or code links(except poolpartyrb.com and related to it).
The poolparty script must be able to launch an selected AMI instance with two EBS blocks(data and DB) use one elastic ip,fetch code repo and install Chef server on selected instance. Or if you have used Chef server for rails deployment please share your exp.
Thanks,
Pravin
How far did you get with your pool party script?
launching EC2 instances is explained in this detailed example
the EBS part is explained in this github issue
to deploy an application from git, use chef's deploy resource
installing chef is done using gem install chef
Maybe you can share what you have and where exactly you're currently stuck.