why i got an error script after enable rabbitmq_management - rabbitmq

i was try to install and running rabbitmq in my windows and following the tutorial from the official web.
but i got an error script after run
rabbitmq-plugins enable rabbitmq_management
in my command prompt
this is an error i have
error script in rabbitmq_management
i was run rabbitmq service but it's no effect
and i cannot run http://localhost:15672
i think it's because management plugin error, how to fix the error script. ?

The error undef crypto module means that you don't have the erlang crypo module installed.
The Management UI requires this module.
You are maybe running an old erlang version.
Try to remove the the current version and download this version:
http://erlang.org/download/otp_win64_18.3.exe

Related

Unable to install Dotnet Stryker

I have tried the below commands to install dotnet stryker to my project to improve the mutation testing but getting below error message and it does not allow me to install the tool.
Could you please help on this.
Thanks in advance
PS C:\Users> dotnet tool install -g dotnet-stryker
C:\Program Files\dotnet\sdk\6.0.101\NuGet.targets(130,5): error : Unable to load the service index for source https://api.nuget.org/v3/index.json. [C:\Users\AppData\Local\Temp\evv2az1v.kwa\restore.csproj]
C:\Program Files\dotnet\sdk\6.0.101\NuGet.targets(130,5): error : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (api.nuget.org:443) [C:\Users\AppData\Local\Temp\evv2az1v.kwa\restore.csproj]
C:\Program Files\dotnet\sdk\6.0.101\NuGet.targets(130,5): error : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. [C:\Users\AppData\Local\Temp\evv2az1v.kwa\restore.csproj]
The tool package could not be restored.
Tool 'dotnet-stryker' failed to install. This failure may have been caused by:
* You are attempting to install a preview release and did not use the --version option to specify the version.
* A package by this name was found, but it was not a .NET tool.
* The required NuGet feed cannot be accessed, perhaps because of an Internet connection problem.
* You mistyped the name of the tool.
Below commands are also getting the same error message
PS C:\Users> dotnet tool install -g dotnet-stryker dotnet tool install --global dotnet-stryker --version 1.0.0
This is most probably not related to Stryker but to some weird NuGet situation. You can check it by installing some common tool, e.g dotnet-reportgenerator-globaltool. I think I have seen this kind of error when setting up local feeds for dev purposes.
So try this:
dotnet nuget list source - list feeds
dotnet nuget remove source <feed_name> - remove everything you don't need or understand
And then try installing Stryker once again.

How to resolve clipboard error while deploying vuejs app on ubuntu server

I am deploying a vuejs app on my server.we have EC2 instance with ubuntu 16.04,As of now I am just deploying my test project but when I go running serve command like sudo serve -s dist but it is throwing an error which is: ERROR: Cannot copy to clipboard: Command failed: xsel --clipboard --input
xsel: Can't open display: (null)
: Inappropriate ioctl for device
I don't know this error is caused by ubuntu or vuejs please help me solve it.
I have followed these cammands so far.
First installed vue cli using
npm install -g #vue/cli
Then created a hello world app using
vue create helloWorld
Now run serve command
npm run serve
It was showing me a message like:
App running at:
- Local: http://localhost:8081/
- Network: http://172.31.16.66:8081/
Now i have created a build to run an app on the production server
npm run build
So my build was created successfully
i run command to run the app on the live server
serve -s dist
And it is throwing an error which is not solving by me so far
WARNING: Checking for updates failed (use--debugto see full error)
ERROR: Cannot copy to clipboard: Command failed: xsel --clipboard --input
xsel: Can't open display: (null)
: Inappropriate ioctl for device
I am also attaching screenshot below.
As you can see, there is an X11 dependency with the serve module - which means you need an xserver(display) for it to work.
Alternatively, (highly recommended) you could use a high performance HTTP server like nginx, apache etc. instead.
All you need is to copy your dist folder to your instance, and point your virtual server block to the dist dir, and restart your HTTP server - BAM! you're up and running.
Cheers!
I had the same issue and I solved it by adding "-n" option to serve.
"-n, --no-clipboard Do not copy the local address to the clipboard"

npm package installation error (express, ember)

I've been trying to install ember and express in my windows 8.1 for learning. I face the similar error in both packages ember and express while using the following command.
npm install -g express-generator
I have attached the cmd error page for better understanding of the error. I am new to express and ember, just now starting to learn please help me out.
thanks.image here
Open and admin command line (Run as administrator) then and execute your commands.
You need elevated permissions to install globally (-g), that's the cause of your errors.

Getting error 'Cannot find module 'parse-server'

I am trying to run Parse server which is available on link:
https://github.com/ParsePlatform/parse-server
I have done some pre-requisites related to MongoDB and some other concepts. When I try to run parse server using command:
node parseServer.js
But this command gives me an error as:
'Cannot find module 'parse-server'
Again, I installed parse-server module using command:
sudo npm install -g parse-server
After installing this module, I tried again to run parse server, but still I am getting same error.
Some help would be really appreciable. Thanks in advance.
Try to use the Parse Server example, Parse server is used as a like node js module.
What is the different between Parse-server and Parse-server-example on ParsePlatform on GitHub?

RabbitMQ plugin configuration failure

I have copied plugins to plugins folder in rabbitmq-server.
When I run command to enable stomp plugin like the following:
$rabbitmq-plugins enable rabbitmq_stomp
Plugin configuration remains unchanged.
Applying plugin configuration to rabbit#pts00449-vm19... failed.
Error: {enabled_plugins_mismatch,"/etc/rabbitmq/enabled_plugins",
"/does-not-exist"}
Can anyone please help me?
There is plugins mismatch in your "enabled_plugins" directory.
Please check if you have enabled "rabbitmq_stomp" twice.
Try to disable the rabbitmq_stomp plugin and then you may restart the rabbitmq-server doing following steps:
rabbitmq-plugins disable rabbitmq_stomp
rabbitmq-server start