Getting Error while installing Ejabberd in windows - ejabberd

I'm trying to install Ejabberd in the windows but getting the error that Error running post install script . I have tried version 20.04 and 20.02, in both the version I'm getting same error.
I have tried many options like
Install as an administrator
Uninstall then Goto C:\ProgramData\ejabberd\ and delete the ejabberd folder and reinstall.
Run postinstall.cmd file manually which is located in ejabberd\bin folder.
But none of them worked. Can anyone help me to solve this?
Error image: https://user-images.githubusercontent.com/46276226/84561409-b484e100-ad69-11ea-9c68-b5cc6b76c40b.PNG

Related

Meteor: unable to install mysql in my meteor app

I have cloned one of my local project to another folder. I faced some mysql issues. So, I am trying to install mysql in my meteor app, but it always throwing me a error as 'couldn't install npm mysql package'. I have googled related to this issue, but none of them get resolved. I appreciate if anyone help me.
meteor npm install mysql
As mentioned in the comment:
Try:
npm config set strict-ssl false
and then
npm config set registry http://registry.npmjs.org/

Installing Siremis stuck on Database Configuration

I have install Kamailio 4.3.4 on Ubuntu 16.0.5 LTS. I want to install Siremis 4.3.0 but stuck on Wizard step 2 (Database Configuration) there is message "Something went wrong". I found error 500 action=update on console inspect element. I have try installing Siremis 5.1.0 and still not working stuck on step 2.
My Apache ver 2.4.10, My Php ver 7.0.33, Mysql 14.14
Please any advise
Sounds like one of the dependencies is not met:
Check your permissions are set:
make prepare24
make chown
Check Mod Rewrite is enabled:
a2enmod rewrite
service apache2 reload
Check PHP Mod is Enabled in Apache
On 16.04 installing PHP doesn't automatically add the PHP Apache mod, should be a package like libapache2-mod-php, you can verify that Apache is actually parsing PHP files by setting up a PhpInfo page.
Remove the Lock File & Try Again
When you run the installer a lockfile is created to prevent running the installer multiple times.
Once we empty the database with:
mysql> drop database siremis;
We can remove the lockfile and try again (from the Siremis directory):
rm install.lock
I did a writeup on installing Siremis on Ubuntu 18.04 which works fine.

Error while installing nodeJS mysql package on Windows 7

I am new to nodeJS,
I am trying to install mysql package of nodeJS as
>node
>npm install mysql
and also with
>npm install node-mysql
but getting error as
npm should be run out side of the node repl in your normal shell
so i run the same command in side nodeJS directory in program file
still getting error check images
This error is indicating that the path referred to in the screenshot above (.../AppData/Roaming/npm) is not available (doesn't exist or isn't accessible by your user).
Can you make sure there is a folder npm at this path:
c:\Users\mayank.bhadauria\appdata\roaming
If not, please create it and then try npm install node-mysql again.

MySQL Installation Failed - Can't Create Folder

I'm trying to install MySQL 5.6.12 on my MacBook Pro running OS 10.7.5.
I ran the install package and received an "install failed" message:
The Installer can't create the folder /var/folders/ym/fjmt27ys02l0yyhqjkfkd9100000gn/T//Install.747XBTKTG
I've tried creating this directory myself, but have been unsuccessful. The "T" folder has a little red symbol on it, and I can't modify it, even with sudo as an admin.
Have any suggestions on how to fix it?

Error when running Rails Server on a local copy: Could not find mysql2-0.2.6 in any of the sources. Try running `bundle install`

I just forked a copy of an app on github and saved it on my computer. When I attempt to run the rails server in the application directory, I get the following error:
Could not find mysql2-0.2.6 in any of the sources
Try running `bundle install`.
Earlier today, however, I installed MySQL 5.1.53 for Mac OS X and supposedly installed it...at least I'm quite certain I did.
Why does terminal come up with this error message even though I'm quite certain I have MySQL already installed on my system?
It's not complaining about MySQL itself, it's complaining about the missing gem.
Just do what the message says, run a bundle install to download and install the gem.