I was having a lot of issues with installing docker in Linux Mint 17.3 which runs in the virtualbox. I've downloaded the bitnami Eclipse Che Virtual Machines (Che 5.0) and installed it in the virtualbox. I am trying to create the workspace and I get the time out error. The last step showing in the log says "Deploying web application archive /home/user/che/ws-agent/webapps/ROOT.war". Then the message says "Error:Timeout. The Che serve is unable to ping your workspace. This implies a network configuration issue, workspace boot failure, or an unusually slow workspace boot." I've signed on as the default user id "bitnami" and the log mentions "/home/user/che" folders.. Is this why I can't get the eclipse che's workspace started?
TIA,
Thomas
Since I was using linux mint 17.3, the correct way to install docker is
sudo add-apt-repository \
"deb https://apt.dockerproject.org/repo/ \
ubuntu-trusty \
main"
This will set the correct repository and i was able to install docker and eclipse/che without any problems. Also this will install the newest version of che as well.
Related
I made a fresh install of gcloud for ubuntu as instructed here. I want to use the additional components offered by gcloud like kubectl and docker.
So, when I tried typing gcloud components install kubectl, I get an error saying that The component manager is disabled for this installation. Here is the full error message:
This is because you installed google-cloud-sdk with a package manager like apt-get or yum.
kubectl:
If you look here you can see how to install additional components. Basically sudo apt-get install kubectl.
If by docker you mean the docker-credential-gcr then I don't know if there's a way to install using a package manager, can't seem to find it. Perhaps ou can try the github repo. Mind you, you don't need this for commands like gcloud docker -- push gcr.io/your-project/your-image:version.
If you mean actual docker for building images and running them locally, that's standalone software which you need to install separately, instructions here.
Alternatively, you can uninstall google-cloud-sdk with apt-get and then reinstall with interactive installer, which will support the suggested gcloud components install *
Based on previous post, I believe Cygnus docker repo is experiencing a repository problem (Can't install cygnus-ngsi via Docker). I have tried some suggestion but couldn't solve it, without success.
Any suggestion to work this out?
---> Running in 01f1ccf107fa
Loaded plugins: fastestmirror, ovl
Setting up Install Process
http://centos.blazar.mx/6.8/os/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://centos.blazar.mx/6.8/os/x86_64/repodata/repomd.xml: (28, 'Operation too slow. Less than 1 bytes/sec transfered the last 30 seconds')
Trying other mirror.
.
.
.
INFO: Java version <1.7.0>
INFO: Apache domain <http://archive.apache.org/dist/>
INFO: URL MAVEN <http://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz>
INFO: URL FLUME <http://archive.apache.org/dist/flume/1.4.0/apache-flume-1.4.0-bin.tar.gz>
INFO: Download and install Maven and Flume...
The yum repositories has controlled by the operating system.
If exist network problems between SO and mirror repositories, or maintenance task in the yum repositories, the yum utility can be failed.
We have sometimes experienced this kind of failure, included using Centos 7.
When yum repo maintenance is being performed there's no much to do.
Within a company you can use a cache proxy.
If exists network problems, you can review host SO configuration and docker configuration. And test other fiware docker images.
Anyway, to allow us to test with a more accurate configuration, can you provide us what operating system you have, and docker version installed (rpm -qa | grep docker)?
In my deep dive into the CentOS terminal, I was able to install and setup Jira, Confluence, and Bitbucket servers. However, the Hipchat Server seems to be based on something completely different.
Is there a step by step guide to installing Hipchat; From what's needed (dependencies) to installing (which I'm not even sure is part of the process) to seeing it work (log-in, etc.)?
Atlassian's official guide is written in such a way, that I look at it confused - as if it's a riddle that will never be solved. lol
By HipChat4, I'm assuming you refer to the HipChat Client. If so, have you tried the instructions outlined here?
sudo bash -c ‘cat > /etc/yum.repos.d/hipchat.repo << EOF_hipchat
[atlassian-hipchat]
name=Atlassian Hipchat
baseurl=https://atlassian.artifactoryonline.com/atlassian/hipchat-yum-client/
enabled=1
gpgcheck=0
EOF_hipchat’
sudo yum update
sudo yum install hipchat4
If what you're trying to install is the server, then keep in mind that HipChat Server is only supported on AWS (via the Atlassian provided AMI), or as a VM for private datacenters (via the Atlassian provided OVA). You can't install HipChat Server directly on a Linux box.
If your OS can run a virtualization platform (e.g. VirtualBox) then you can download the OVA from https://www.hipchat.com/server#get-hipchat-server, import it, start your VM and configure it. More thorough instructions are available here.
We have a Redmine instance on the centos 7 server with Bitnami. I am getting following error during installation of an another Redmine instance.
Command Used:
[root#localhost htdocs]# bundle install --without development test
Error Message:
An error occurred while installing mysql2 (0.3.21), and Bundler cannot continue.
Make sure that gem install mysql2 -v '0.3.21' succeeds before bundling.
The Bitnami installer includes a ready to use Redmine stack, so I assume you're trying to install additional plugins on the vanilla Redmine install.
I suspect that you forgot to load the proper environment variables to use the Bitnami Stack mysql libraries. Go to your install directory (usually /opt/bitnami/redmine) and execute this source ./use_redmine
And then follow this instructions https://docs.bitnami.com/installer/apps/redmine/#install_plugins
How must eclipse PTP be configured to run MPI applications using OpenMPI on the local machine? Using "Add Resource Manager", I can choose OpenMPI and switch on to Localhost in "Connection name". But still, I'm asked for some user and password name. Is this the right way?
Do this
sudo apt-get install openssh-server openssh-client
Then follow this instructions on the PTP documentation.