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.
Related
I have Nagios XI installed and want to monitor remote Redhat machine using SSH. Installing the agent is likely not allowed in our environment.
This is from Nagios instruction from the page 2
Before you can use the check_by_ssh plugin, you must install/configure the following on the remote Linux/Unix server you want to
monitor:
● Create a nagios user
● Install Nagios plugins and/or monitoring scripts
● Install and configure the SSH daemon
I downloaded the Nagios official plugins(I believe there are 50 plugins) and extracted the files, but there is no instructional step for install command. I read the README file, but this seems to give me the steps of making the install files from the source, I think.
Is there a simple command that will run the install in order for me to install the plugins that will include check_by_ssh plugin?
This answer was given by Nagios support team:
Nagios Plugin Installation
cd /tmp/nagios-plugins-2.1.2
./configure --with-nagios-user=nagios --with-nagios-group=nagios
make
make install
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.
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.
Unfortunately, I do not find a solution for my problem in this similiar question.
I have a server with special hardware and a special (GNU-compatible) toolchain. I can only access this server via SSH.
Now I try to set up a development system with Eclipse. Is it possible to set-up a configuration to be able to build and debug via SSH as if the program would run on my local computer? And if yes, could you tell me a little bit about it? ;-)
Provided your server is a Linux machine running a X server, you may want to look around SSH -X.
Install Eclipse on your server
Install an X11 environment on your client (e.g. for Windows: XMing)
Connect to SSH with the -X option (e.g. for Windows, there is a checkbox on Putty)
Launch Eclipse from the ssh connection.
I have installed openfire on my pc and I have spark client also .Its working fine when server/host : is localhost .
But How do I install the same on my domain www.example.com/test/ .I transferred the entire zip file and I did not find any set up/html/php file to run setup on my cpanel hosting folder.
How do I install openfire on my domain ? I really appreciate any help.Thanks in Advance.
Since you are using shared hosting (Cpanel) you need to have SSH access to your server. You can easily enable SSH for your shared hosting server. How to enable SSH/Shell Access in cPanel might help you to do so else use Google it.
Installing and configuring open fire
Login to your server via SSH in terminal
ssh username_of_server#ip_adress_of_server
Run in terminal
sudo apt-get update
sudo apt-get upgrade
Install JRE ( if you didn't have already because Openfire is in JAVA)
sudo apt-get install openjdk-7-jre
Now you have enviornment of java and openfire. Following tutorial Installing Openfire heading onwards .......
I hope it helps you to kick off.