how to install openfire on cpanel (my domain) - xmpp

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.

Related

Offline Ros Bridge Intallation / without internet

We want to install Ros Bridge to our server. But we don't have internet access on server. Is it possible we can install without internet?
Thank you...
You can download the package and all it's dependencies on a different device (with similar architecture) like
sudo apt-get install ros-<rosdistro>-rosbridge-server --download-only
This will place the packages at /var/cache/apt/archives. The files then can be used for installation without the need of downloading them again. So after moving them to your server, this can be done with
apt-get install ros-<rosdistro>-rosbridge-server

Login Citadel mail server issue on raspberry pi 3 B

I have installed Citadel mail server on my Raspberry Pi 3 running raspbian with apache2 because I am already running a nextcloud server on it.
The installation process completes without any errors.
I am able to get on the citadel's login screen with my browser on port 8080 and I can't seem to get passed the login screen.
Login and password is correct. I know that because I don't get any errors like wrong password or user does not exist, after clicking login I get nothing. Login page just refreshes.
I tried those commands
sudo mkdir /etc/citadel/netconfigs
sudo chown citadel:citadel /etc/citadel/netconfigs
and
sudo service citadel restart
sudo /usr/lib/citadel-server/setup
Didn't change anything.
Tried purging and reinstalling the suite, reconfiguring everything and I get to the same point.
I made sure to delete any remaing files or configs before reinstalling so I am out of ideas.
If you need any more information or have me to check error logs, just make sure you tell me how :) I'm definitely not an expert.
Thanks in advance!
I had this on a Pi. Try using Easy Install. My comments in []
Easy Install requires a working build environment. This is installed by default on many Linux distributions. [But not Pi] Otherwise, to install a build environment use the following commands (as root):
apt-get update
apt-get install build-essential curl g++ gettext shared-mime-info libssl-dev zlib1g-dev
Then run Easy Install the normal way:
curl http://easyinstall.citadel.org/install | bash
[from http://www.citadel.org/doku.php?id=installation:easyinstall:easyinstall]
This compiles Citadel so will take some time. If this seems not to work just run again. this time is very fast, and will let you do the setup.
As a small update to this issue, you may find installing Ubuntu Server 18.04 on your Pi 2/3 a lot smoother. Ubuntu now offers their own proper server images for RPi.
As of 18.04 the Pi wireless drivers are included, and Citadel installed effortlessly and fully (inc. login) functional.
I have 18.04/Citadel running with 140Mb/RAM and about 2% CPU whilst idle using the Pi 3B+.

Download RPM on Windows PC then install on Centos server

I'm really stuck in installing services in Centos server. I almost browse all the pages in Google result. I'm a Windows user and very new in Linux environment, so it makes me difficult to understand all the results from Google.
The server doesn't have option to connect to the internet. Based on my research, my only way is to download all the RPM files in a machine with internet then transfer it to my server.
Problem: I cannot find the official package list of YUM so I can download it one by one like the https://bower.io/search/. There's a lot of downloadable files showing if I type in Google "YUM php7 rpm".
Edit: I am currently using YUM because I don't know any other way to install packages in Centos. I only want to install the following :
php7
nodejs
composer
supervisor
nginx
I don't have any access to any media. I just remotely access it via putty and Filezilla. But I have root access.

Install Nagios plugins - missing install instructional step?

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

How to install Hipchat Server on CentOS 6?

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.