Is there a way to run Elasticsearch and Kibana behind the scenes (hidden) via windows cmd? [closed] - powershell

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Currently I'm running Elasticsearch and Kibana in their own console windows. I don't want these console windows to be able to be seen, some users should not be able to be able to view these windows. I wanted to run them in Docker containers, but docker is not compatible with windows server 2012 r2. Would it be possible to create a .bat file to launch Kibana and Elasticsearch, then execute the created .bat file from PowerShell hidden? I have no experience in PowerShell and would prefer a different approach if possible.

It is in the documentation, these are the steps to run elasticsearch as a service in Windows. For Kibana you will need to create a service, you can use something like NSSM to do that. –
leandrojmp
1 hour ago

Related

Is there a mainframe z/OS image to run in cloud platforms? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I might be asking a stupid question. Is there an OS image for mainframe similar to Linux and Windows? what does it mean GCP or a cloud platform says "can run a custom image of an application" ? Is it only within Linux and Windows flavors ? Please refer any learning links for me to understand the basics.
Example:
https://cloud.google.com/security/shielded-cloud/creating-shielded-images
You need a license from IBM to run z/OS, and you must run it on an IBM approved platform. Approved platforms are IBM Z systems (and predecessors), and IBM zPDT environments.
Hercules is not an approved platform, and it is unlawful to run any recent IBM mainframe operating system on Hercules.

Is Putty needed if I am using the Windows Power Shell [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am currently using Windows Powershell with Git I am mainly developing websites but I have noticed some developers like to use Putty Wanted to get some of your thoughts if its needed if I am using the PowerShell already since its a ssh.
Sounds like you are confusing the both. PowerShell is a shell environment for windows. Putty is a terminal emulator, mostly used for SSH and Telnet. Perhaps you are reffering to Cygwin, which is a Linux "emulator" which provide functionality similar to a Linux distribution on Windows.. Cygwin ships with Bash, but you can choose to use whatever shell or package using the installer.

How to install firefox addon mozrepl on Web hosting server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have perl script for scraping which uses WWW::Mechanize::Firefox and firefox addon MozRepl.
Now, i need to deploy it on a web hosting server. The problem is that the they don't provide any interface or UI terminal so that i can launch firefox and launch it from there .
Can anyone tell me a way to install MozRepl addon in Firefox from the shell or by any other means
You can use the python tool used, CFX, to develop the SDK and addons to automate installing of addons. In the future, we'd like to be able to install addons with the Firefox binary command line flags
#Stevie G
Yes i have used TightVNC server/viewer to connect to server with GUI, and then installed the required modules using the interface.

Looking for GWT Developer Plugin for IE9 standalone installation files [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking to download the standalone installation file for GWT Developer plugin for IE9. I searched on Google and found the following URL's but both the URL's don't work...
http://google-web-toolkit.googlecode.com/svn-history/trunk/plugins/ie/prebuilt/
http://dl.google.com/dl/gwt/plugins/ie/1.0.7263.20091208111100/gwt-dev-plugin.msi
I tried installing it from within IE9, the installation starts but after a while it fails with The Download Failed message. See below...
Can someone please tell me where I can find the standalone installation file. (I am running Windows 7.)
Thank you!
The first URL you tried has moved to https://gwt.googlesource.com/gwt-plugins/+/master/ie/prebuilt/

What servers are suitable for Perl on a development box? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm maintaining a simple web site written in Perl in my copious free time, and I don't want do my coding on the live website any more, instead checking if the changes work on a local machine first.
As far as I can tell, the web site runs on apache.
Should I install apache on my local machine, or are there simpler (but well documented!) options more suited to a development box?
Related question: How can I run Perl on web servers? , but seems to be talking about a production box, not a development box.
XAMPP is an excellent package for precisely this purpose. It includes Apache, MySQL, PHP, Perl, and other tools, all pre-configured to run on your local machine. I use it for WordPress, but I expect that it would be equally good for Perl CGI development.
I use it on Windows. It is also available for Linux and Mac.
Hat tip to Kenosis, who mentioned XAMPP first. I didn't see that at the time.