how to update elastix openfire to 3.8.2 version - openfire

I have install Elastix 2.4.0 and i want to update openfire version to 3.8.2. First i just download the rmp and make the update
rpm -Uvf
it works but nothing appear in elastix administration.
Somebody can help me?

To update Openfire you must download rpm package and run following command:
rpm -Uvf openfire-3.9.3-1.i386.rpm
After update up to 3.9.3 sometimes(on 64bit systems) you need install mo libraries to start java.
Try it with the following command:
yum install glibc.i686
After that start openfire service from elastix web panel.

You are dear Alexey,
a simple way is to login webshell as root, then type:
# wget http://www.igniterealtime.org/downloadServlet?filename=openfire/openfire-3.9.3-1.i386.rpm
# rpm -Uvf openfire-3.9.3-1.i386.rpm
if you use a 64bits system, please Java will need some additional libreries, install them by typing
# yum install glibc.i686
# reboot
After reboot your Elastix Flavour, start openfire service from elastix web panel, this may redirect your web link to http://yourip.address:9090
replace this IP by yours.
in that case, logout from Elastix GUI and login again..
Then Find your Openfire Server web GUI into Elastix Web configurator.
Happy hacking
CokoTracy

Related

Install Phalcon on RHEL 7

I'm trying to install Phalcon on my RHEL 7 VM. I downloaded files and folders from GitHub and place them on my VM via WinSCP in /opt/ (using remi repo or git clone from VM is blocked)
When I move into /opt/phalcon/build/ and try to sudo ./install, I got a notice that PHP 5 is no longer supported, currently on my Red Hat, I have PHP 7.3.11 version running (checked using php -v and config page).
I installed things like php-devel or gcc.
I have rh-php73-php installed and running on my VM
Maybe someone can help me, because I have no idea how to fix it.
I have rh-php73-php installed and running on my VM
Sorry, but phalcon extension package doesn't exist for this PHP stack.
Using the full php stack from "remi-php73" repository or php73 SCL from "remi-safe" will give you "php-phalcon4" package with latest version of this extension.
using remi repo or git clone from VM is blocked
Use a proxy, or download packages and install them manually.
Tips: test installation from another computer, connected to internet, to get the full package list. You can even retrieve them later from /var/cache/yum (using keepcache=1 in yum.conf)
For memory, for a proper installation, follow the Wizard instructions

Server not starting in IBM API connect toolkit

I have created API's in API connect toolkit. For testing the API locally in Explore tab, I am trying to start server.
But getting "Error: It appears that Docker for Windows has not been installed. To install Docker for Windows, please visit https://docs.docker.com/docker-for-windows/install/ For more information, check the docs" error.
From my understanding you don't need docker to test locally in toolkit. Any suggestions to fix the issue?
More Info: APIC version: API Connect: v5.0.8.3 (apiconnect: v2.7.209) NPM version : 6.1.0
It used to work before suddenly I am getting the above error. I tried re-installing but issue persist.
With new versions of APIC you must have Docker installed and working properly on your Windows environment to be able to install the API Connect Toolkit with DataPower.
Please find the steps to install the APIC toolkit on these pages:
https://www.ibm.com/support/knowledgecenter/en/SSFS6T/com.ibm.apic.toolkit.doc/tapim_cli_install.html
https://www.ibm.com/support/knowledgecenter/en/SSFS6T/com.ibm.apic.toolkit.doc/tapim_apic_test_with_dpdockergateway.html

How to install mod_cloudflare for easyapache 4

I am trying to install mod_cloudflare for Apache using easyapache 4 on cPanel Server. I am running CentOS 7.2.
I have installed mod_cloudflare for EasyApache4 following the instructions under Option 2 here. After running the installer it said "Done. Please restart EasyApache 4". I then went into WHM -> EasyApache 4 and tried to find the server module, but it is not to be found. I clicked the "run system update" button and tried again, to no avail. Is there an easyapache service that needs to be restarted via the command line?
I am not a hosting provider so I have not tried the Cloudflare plugin for CPanel.
* Edit 4/9/2019 *
Changing accepted answer to EasyCo's, as the original solution no longer works.
Figured I'd throw my solution into the mix using Centos 6.9 with WHM/cPanel.
bash <(curl -s https://raw.githubusercontent.com/cloudflare/mod_cloudflare/master/EasyApache/installer.sh)
wget https://raw.githubusercontent.com/cloudflare/mod_cloudflare/master/mod_cloudflare.c
yum install ea-apache24-devel
apxs -a -i -c mod_cloudflare.c
rm /etc/apache2/conf.modules.d/mod_cloudflare.conf
service httpd restart
What's happening?
We're using the cPanel installer.sh as suggested by Cloudflare but the compiled mod_cloudflare.so throws an error if you then run service httpd restart. Lets fix this.
Download the source mod_cloudflare file.
Ensure we have the correct EasyApache4 developer tools to build the mod_cloudflare module.
Build and install extension module.
Remove the new mod_cloudfare.conf file since we prefer the one that was generated and installed in step 1.
Restart apache.
Note: The mod_cloudflare module will not show in EasyApache4. You can see it's enabled by running httpd -M | grep cloudflare and you should see something like cloudflare_module (shared).
References:
https://www.cloudflare.com/technical-resources/
https://community.cloudflare.com/t/help-installing-mod-cloudflare/1747/12
http://www.marathon-studios.com/blog/issues-installing-mod_cloudflare-on-centos-7/
https://forums.cpanel.net/threads/install-httpd-devel.594631/#post-2405975
I found a solution that worked perfectly.
This github project installs the module and adds it into EasyApache so that future rebuilds keep the module active. This was the only solution I found that actually works for EasyApache 4. Everything else seems to be for EasyApache 3.
CloudFlare was not much help with this either, as they had suggested I contact my hosting provider for assistance.
I know this is a bit old now, but it's the first answer that shows up in google.
The official cloudflare answer does work, it just doesn't show up in the EA4 list of modules. However it is installed and working.
Just for others like me that reached here recently, mod_cloudflare module is deprecated and there is a native module for apache [mod_remoteip]. I can see it in EasyApache (apache module section). Also There is a manual here to install & config :
https://support.cloudflare.com/hc/en-us/articles/200170786-Restoring-original-visitor-IPs
with this module you can see Client IP through
$_SERVER['REMOTE_ADDR']
And there is no need to
$_SERVER['HTTP_CF_CONNECTING_IP']
Instructions for installing mod_cloudflare on cPanel with EasyApache4 can be found here:
https://support.cloudflare.com/hc/en-us/articles/206175737-How-do-I-restore-original-visitor-IP-with-EasyApache-cPanel-
bash <(curl -s https://raw.githubusercontent.com/cloudflare/mod_cloudflare/master/EasyApache/installer.sh)

apache 2.4 for windows install/run as a service, available for all users

I have downloaded Apache 2.4 for windows, as its zip file I extracted ansd started using. however I need to "install/run as a service, available for all users"
need help to do same.
Thanks in advance.
Extract the .zip file to somewhere like C:\Apache24. Next navigate to C:\Apache24\bin in command prompt.
Then type:
httpd -k install
You can then start Apache as a service by typing:
httpd -k start
You will also be able to control Apache via Services in Administrative tools after restart.
For all users you can install the service using the .msi file. You need to compile (see 'Command Line Build') the source in the .zip you downloaded to produce this file.
Alternatively if you obtain a pre-built .msi you can install from there as well.
Once it's compiled if you install Apache via the installer and select All Users when prompted for who to install for it will install the service for all users.

Installation of red5 1.0.5 on windows

Can anyone please tell me how to install RED5 media server version 1.0.5 on windows7,i have already tried installing using executable file from https://github.com/Red5/red5-server/releases but jre file isnot there.Also red5 isn't appearing in Administrative tools/services to start the server.
Make it in following steps:
Uninstall your previous Java and Red5 install. Reboot.
Download JDK 8u45 64 bit and install
Install RED5 1.05 windows and install
Go to RED5 directory and run install service
Reboot
Go to services and make sure RED5 service is installed and start service. 7. Set service to start in "Automatic"