Can i install ejabberd on the Google Compute Engine?

Can i install ejabberd on the Google Compute Engine? Will there be problems using ejabberd in the Compute Engine? I looked, but I can not find links to those who are trying to do this before. Grateful for any help.

+3
source share
3 answers

Yes. Compute Engine gives you virtual machines. You can impose on them everything that you want, for example, Erlang and ejabberd.

+3
source

Yes, you can.

You can use Vm with Debian Image and follow these instructions.

http://www.howtoforge.com/virtual-mail-jabber-server-xmpp-with-iredmail-and-ejabberd-on-ubuntu-9.10

Remember to open the ports in the firewall.

+2

, , "". .

, Compute Engine. , , .

: debian-7-wheezy-v20140408

sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libncurses5-dev
sudo apt-get install openssl libssl-dev
sudo apt-get install libexpat1-dev
sudo apt-get install unixodbc-dev
wget http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz
tar tar -xvzf yaml-0.1.5.tar.gz
cd yaml-0.1.5
./configure
sudo make
sudo make install
sudo apt-get install xsltproc
sudo apt-get install fop
cd ..
wget http://www.erlang.org/download/otp_src_R16B03-1.tar.gz
gunzip -c otp_src_R16B03-1.tar.gz | tar -xf -
cd o....
./configure --with-odbc=/usr/lib/odbc
sudo make
sudo make install

[.. Install git and clone repo here.. ]
git clone git@github.com:processone/ejabberd.git

cd ejabberd
./configure --enable-odbc --enable-mysql
sudo make
sudo make install
0
source

All Articles