Server was not listing in teleport web ui - linux

we are adding teleport server manually without using the teleport ui and it was listing in teleport UI
after removing teleport from server and try to add again /etc/teleport.yaml file not generating and it was through error as below we are not able to add same instance or node again in teleport .how to resolve this.
2023-02-03 16:07:11 IST [teleport-installer] Found: Teleport v11.3.1 git:api/v11.3.1-0-gccd6a1b02a go1.19.5
2023-02-03 16:07:11 IST [teleport-installer] Writing Teleport node service config to /etc/teleport.yaml
bash: line 475: LABELS_FLAG[#]: unbound variable

Related

Unable to remove module of node-red

I am having issues with node-red and can no longer run any flows, i am not sure what to do anymore.
i get the following error
Imported unrecognised type: mqtt-env-broker
Flows stopped due to missing node types. Check logs for details.
Tried to remove this module from the palette but get the following error, i am also unable to disable it
Failed to remove: node-red-contrib-mqtt-env
Error: Type in use: mqtt-env-broker
Check the log for more information
I have installed the node-red-admin and tried to remove it from command line, so i issued the following command
sudo node-red-admin remove node-red-contrib-mqtt-env/mqtt-env
i get the following error
404: Cannot DELETE /nodes/node-red-contrib-mqtt-env/mqtt-env
this is what i get when i ran the following command
node-red-admin list
Nodes Types State
node-red-contrib-mqtt-env/mqtt-env mqtt-env in error
mqtt-env out
mqtt-env-broker
node-red-dashboard/ui_audio ui_audio enabled
...
...
node-red/mqtt mqtt in error
mqtt out
mqtt-broker
The flows are stopped because they are trying to use a node type you have not got installed - or in this instance, it appears, is hitting an error when it tries to start
The runtime won't let you remove the node because it is referenced in your flow.
To fix this you need to delete any of the nodes referenced by this module from your flow. The name mqtt-env-broker suggests it is a configuration node rather than a regular flow node. Open the Configuration Nodes sidebar panel (from the drop-down menu) and look for any unknown config nodes. Double click on them and delete them. Once you've removed them, hit deploy and things should start working again.
You should then be able to delete the node module from your runtime.

Xampp mysql error #2002

anyone can help me, how to fix this
when i open localhost/phpmyadmin/
it says
Error
MySQL said: Documentation
#2002 - No connection could be made because the target machine actively refused it.
The server is not responding (or the local server's socket is not correctly configured).
Connection for controluser as defined in your configuration failed.
when i run mysql_start.bat, it says
Diese Eingabeforderung nicht waehrend des Running beenden
Please dont close Window while MySQL is running
MySQL is trying to start
Please wait ...
MySQL is starting with mysql\bin\my.ini (console)
MySQL konnte nicht gestartet werden
MySQL could not be started
Press any key to continue . . .
i tried to fix it with solution that provided in google before
but it still doesn't work
If you view the file mysql_start.bat it has a generic error that is printed irrespective of the MySQL error.
Try to open a command prompt and type the below command which is available in the mysql_start.bat file.
mysql\bin\mysqld --defaults-file=mysql\my.ini --standalone --console
Running the exact command in the prompt will show you the MySQL error. In my case it was the my.ini was missing and I had to rename one of the sample files and put it to the location.

MKS si resync returns 5

While trying to resync using si resync, we are getting an error says:
"MKS125216 The sandbox file sandbox_path_here/project.pj is not registered with the system."
When i tried on another sandbox whihc i had in my local the same command worked.
Any idea what this error says:
MKS125216 The sandbox file sandbox_path_here/project.pj is not registered with the system.
Help with your inputs.Thanks
Root cause of this error:
As of now the sandbox from which you are trying to do is resync is just a folder in your system, it have to be registered in mks to make it as recognizable by MKS as Sandbox(MKS understandable structure).
What this exit code 5 means:
Build from Sandbox_location exiting with error code 5:
Means Unable to create or utilize the selection of command.
How to find Root Cause for this error:
go to mks/bin directory/si sandboxes.
above command will list out all existing sandboxes in your local machine (from where you are trying to run resync) and its mapping to projects in MKS repository server.
If the sandbox location for which you are running resync is not listed there means , it is not yet registered to MKS Repository.
Prerequisite to run si resync: the sandbox for which you are running resync should be registered in MKS Repository Server Machine.
how to fix this
If you are Using Windows machine and have a MKS Web UI: create a new sandbox with the location of sandbox as the current location of sandbox you are trying to do resync.
If linux : go to location of your current sandboxfolder.
from that location point to MKS/bin/si createsandbox -R --host=yourhostname --pw=***
it will create/register your local folder as sandbox with MKS Rep Server.
How to Verify it it registered Correctly
si sandboxes
Results should contan your new sandbox.. :)
Happy Working and All the Best

puppet UI showing connection error while adding class

while I add a class in puppet GUI, it showing me connection error. I checked the puppet dashboard production log, i guess it is throwing
Connecting to database specified by database.yml
Problem loading console auth middleware: cannot load such file -- console_auth_middleware
Problem with loading console: cannot load such file -- console_middleware
Problem with loading console auth: cannot load such file -- console_auth_app_middleware
Problem with loading event inspector: cannot load such file -- event_inspector_middleware
Problem with loading live management: cannot load such file -- live_management
error for this. How can i fix it.

Problem with node.js and Redis-server?

I intended to implement a chat feature in my rails application. After a brief backup work I found JUGGERNAUT is the best option. By going to through http://juggernaut.rubyforge.org/
I have successfully implemented the juggernaut in my application.
Presently I'm all set to implement chat feature and after a vigorous surfing over web I couldn't get good tutorial to implement it but I found the some part of implementation at http://www.golygon.com/2010/12/private-chat-room-in-ruby-on-rails-3-0/. I decided to follow it but initially to implement the tutorial we need to have redis server and node.js in our system. I installed both in my environment.
But I'm facing the following problem as follows:
If I try
redis-server, I'm getting the following error
[11440] 08 Aug 10:08:16 # Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf'
[11440] 08 Aug 10:08:16 # Opening port: bind: Address already in use
and as per the tutorial
if I try
sudo node server.js, I'm getting the following error
[sudo] password for re5:
node.js:63
throw e;
^
Error: ENOENT, No such file or directory '/home/re5/Documents/task17/server.js'
at Object.openSync (fs:153:18)
at Object.readFileSync (fs:94:15)
at Module._loadScriptSync (node.js:468:39)
at Module.loadSync (node.js:338:12)
at Object.runMain (node.js:522:24)
at Array.<anonymous> (node.js:756:12)
at EventEmitter._tickCallback (node.js:55:22)
at node.js:773:9
As I don't know much about the redis and node I'm unable to figure out what was the problem regarding to this errors.
I'm stuck and couldn't go further as I'm not sure whether this two are configured perfectly or not.
currently I'm using rails 3.0.7 and ruby 1.8.7
Can any one help me out.
Well your first error is quite simple to understand.
[11440] 08 Aug 10:08:16 # Opening port: bind: Address already in use
This means that there is aready a server bound to that port and using it as a server, this can happen if you have other applications/servers running or if you try to have mutiple instances of the server run at one time. To fix this you need to stop the process and then start it back up again. You can usually do this by closing all of your terminal windows or using your operating systems process manager to terminate the process, if those methods dont work for you try shutting your computer down and starting it back up. If you are still unable to start the Redis server after this then there are some more steps we can take.
The next error is due to node.js not being able to find a file that it needs. Reinstalling node.js should fix this problem for you.
Let me know if this fixes your problem or if you need more help.

Resources