how to install ejabberd on amazon ec2 using ssh - ejabberd

I am trying to install ejabberd on Amazon ec2 dedicated server. The machine is Amazon Linux AMI 2014.09.2 (HVM). Can anyone help me regarding this thing.

ejabberd installation is fully documented on ejabberd documentation site: ejabberd installation.
The easiest approach is to download binary installer from official ejabberd download page, to make it executable on you Linux server and to run the installer executable. For example:
chmod +x ejabberd-15.07-linux-x86_64-installer.run
./ejabberd-15.07-linux-x86_64-installer.run
There is nothing Amazon EC2 specific.

Related

AWS FSx for lustre client availability for SLES15

Does anyone know if it is possible to install Amazon FSx for lustre client software on SUSE Linux enterprise 15?(Amazon EC2 instance) I have checked the AWS docs here and could see steps provided only for SUSE 12.

Install Dreamfactory on Xampp

I have been trying to install Dreamfactory on Xampp but can't find a single article on how to do so.
Purpose: To generate REST API in php with mysql.
What I have tried:
Initially I installed windows version of
Dreamfactory from official site. It was installed successfully but it don't allow access to MYSQL database in free version. Paid version is out of my budget, so I tried with Xampp. I downloaded open-source version from
Github. After extracting it, executed php artisan serve in xampp command shell as mentioned on Dreamfactory Wikipedia Installation guide. This resulted in following error:
Warning: require(D:\xampp\htdocs\sandbox\dreamfactory\public/../vendor/autoload.php): failed to open stream: No such file or directory in D:\xampp\htdocs\sandbox\dreamfactory\public\index.php on line 24
Fatal error: require(): Failed opening required 'D:\xampp\htdocs\sandbox\dreamfactory\public/../vendor/autoload.php' (include_path='D:\xampp\php\PEAR') in D:\xampp\htdocs\sandbox\dreamfactory\public\index.php on line 24
As mentioned in Git documentation, they have given installation procedures for Ubuntu and Debian. Further more, they have mentioned about Bitnami official installation software, but non for XAMPP or stuff like that.
Question:
Is there any way we can install Dreamfactory on XAMPP? If yes, how so!
I'd venture it's going to be fairly difficult task to run DreamFactory on XAMPP because DreamFactory requires quite a few dependencies which are not installed on XAMPP by default.
Your best bet would be to run the Bitnami for DreamFactory environment, or alternatively use Docker. Both can be downloaded from the DreamFactory website downloads page. Alternatively, if you'd like to run DreamFactory in a VM, the OSS download README points to automated installers for Debian and Ubuntu. Additional installers for CentOS and Fedora are found here, they work great however we just haven't moved them into the official distribution yet.

How to configure Bitnami Redmine with the existing apache and mysql in my server?

I am having a Digital Ocean Droplet of Ubuntu 16.04 with Apache and mysql server configured for my wordpress sites . So now i am currently trying to install Bitnami Redmine into my server . While istalling the bitnami redmine , the stack again install apache and mysql server . So Is there any way to use the existing apache and mysql server for the Bitnami redmine .
Please let me know if there is any step by step documentation to proceed the further . Since i am newbie for ubuntu and redmine
The main advantage of using the Bitnami Redmine Stack is that you don't have to worry about configuring any other service/component that Redmine requires such as Apache, MySQL, Ruby, Git, Subversion, etc.
Therefore I recommend you to use the servers included in the Stack since they are up-to-date and already configured.
Redmine is configured to use Phusion Passenger on the Bitnami Stack. If you want to imitate the configuration that Bitnami uses to use your own Apache Server, you need to configure it to use Passenger.
https://www.phusionpassenger.com/library/deploy/apache/deploy/ruby/
Regarding the Database Configuration. You need to edit the file /installdir/apps/redmine/htdocs/config/database.yml.
Please note that you have to change "installdir" with the path to the directory where you installed the Redmine Stack.

Add mod_mam for ejabberd in ubuntu 12.04

I have successfully configured ejabberd 2.1.10 in ubuntu 12.04 environment with mysql storage. Now I need to integrate mod_mam module for my chat server. I have downloaded the mysql modules from the url https://svn.process-one.net/ejabberd-modules/ and configured using the steps mentioned here https://www.ejabberd.im/ejabberd-modules. But I couldn't find the mod_mam library in that repository.
At the same time, I installed ejabberd 16.02 in my windows 7 machine and found that the mod_mam is available by default. Please provide a solution for this.
Install latest version of ejabberd server put the following lines in module section of ejabberd.yml-
mod_mam:
db_type: odbc ##mnesia|odbc
default: always ##always|never|roster
request_activates_archiving: true ##true|false
assume_mam_usage: on_request ##if_enabled|on_request|never
cache_size: 1000
cache_life_time: 3600
for detail configration check here

Installing tomcat 6 and mysql server on ubuntu ec2 instance

I have created an instance of ubuntu 10.04 lucid lynx on amazon ec2 cloud. Now I need to configure to run my web application which runs of java servlet and mysql 5.1. Since I am novice or newbie to this environment I need some help or reference material to do it. If you know such links or tutorial kindly let me know.
Thanks a ton
sudo apt-get install mysql-server tomcat6
That's really as complicated as it gets. Depending on how you do your webapp deployment, you'll want to install tomcat6-admin
sudo apt-get install tomcat6-admin
Config files can be found in
/etc/mysql
/etc/tomcat6
/etc/default/tomcat6.
Start and stop servers using
/etc/init.d/tomcat6 start|stop
/etc/init.d/mysql start|stop