Getting empty/blank screen (except for a few buttons on the top toolbar) in kibana.
I have elasticsearch 3.3.2 running on my localhost. I downloaded kibana-3.1.2. I unzipped the file and copied the contents of the extracted directory into my webserver. I copied then into "C:\inetpub\wwwroot". The config.js file is unmodified, because I am running on localhost and this will work for now.
The kibana folder now shows up in ISS under default Web site.
![enter image description here][1]
When I have an instance of elasticsearch running (verified by entering http://localhost:9200 in web browser)
I enter "http://localhost/kibana-3.1.2/" into my web browser (I have tried this in chrome and firefox).
This automatically redirects me to "http://localhost/kibana-3.1.2/#/dashboard/file/default.json" and shows the template of the kibana page but I can't do anything in it, and it doesn't have a "getting started guide" like the instillation instructions said there would be.
![enter image description here][2]
I don't know what I have missed or what I did wrong.
The problem is most likely that the Kibana javascript is unable to load default.json from IIS. You need to add a MIME Type mapping for the .json extension. Map it to application/json.
If you still get an empty dashboard, change the application pool used by the site to "No Managed Code" and "Classic" and recycle the application pool.
Did you set the
elasticsearch: "http://localhost:9200"
in kibana.yml?
Otherwise it might be the nginx configuration (that was the case for me).
BTW, an easy way to check is to download the Kibana 4 Beta which doesn't run on port 80 and doesn't require nginx (or other)...
You have to run Kibana 3 with tomcat server.. copy kibana folder into tomcat server,webapps folder... and run with the link "localhost:8080/kibana-3.1.2" (8080 ----> Give as per your tomcat port).
Now your kibana will start.
Related
I've just installed Community Rundeck 3.2.2 with RPM on a RHEL 8.1.
I've tried to customise it with my logo images with no success:
Created user-assets directory in /var/lib/rundeck
Copied the images there (png and jpg)
Defined the settings in /etc/rundeck/rundeck-config.properties
rundeck.gui.logo=logoTNC600x600grey.jpg
rundeck.gui.logoSmall=logoTNC200x200white.png
rundeck.gui.instanceNameLabelColor=#ededed
rundeck.gui.instanceNameLabelTextColor=#000000
rundeck.gui.title=TNC Rundeck
rundeck.gui.staticUserResources.enable=true
rundeck.gui.login.welcome=Welcome to TNC
Restarted Rundeck service to no avail: picture not shown in web browser
What have I missed?
Regards,
Raul Costa
You need to add your assets at /var/lib/rundeck/user-assets path (create if it doesn't exist, remember: the "rundeck" user needs to reach that path). Also, verify the files extensions.
Update: change the order of elements in your configuration. Works in the following order:
# custom logo
rundeck.gui.staticUserResources.enabled=true
rundeck.gui.logo=logo.jpg
rundeck.gui.logoSmall=logosmall.jpg
rundeck.gui.instanceNameLabelColor=#ededed
rundeck.gui.instanceNameLabelTextColor=#000000
rundeck.gui.title=TNC Rundeck
I just put the build folder to the root folder of nginx server, e.g. /var/www/html, but nothing is visible.
When inspect from browser, the root content is empty?
enter image description here
Check your developer console for possible errors. You can also use React Developer Tools to debug your app. You can provide your non-sensitive code to make us understand it better.
I use Dreamweaver and I have a file (PhpTest.php) that I placed in the htdocs folder within the MAMP folder. I've assigned the testing server a name and I've specified a connection type (local/network) and appropriate server folder (a folder that doubles as the PhpTest.php Dreamweaver site folder). Now it's asking me to assign a website URL and I'm at a total loss. I've tried
http://localhost/PhpTest/
as well as the URL of the MAMP ready-page, but nothing's working (I use Chrome, and if it's not already apparent I'm only just now learning PHP).
Anyone have any ideas?
If PhpTest.php is in htdocs you should try:
http://localhost:8888/PhpTest.php
Have you started mamp? (You should start the server by double clicking on the mamp app icon)
To check that 8888 is the correct port you can click on the faq tab in the mamp launch web page .
While there are many questions here about a favicon not showing, I have one that is showing out of nowhere...
If I type in my browser http://localhost, I see the root of the web directory and no favicon.ico is there. Yet an icon shows up on the browser tab. If I type http://localhost/favicon.ico, the browser does show me the icon!
How can http://localhost/favicon.ico return something that does not exist?
I am using an iPlanet server linked to weblogic app container.
I searched for a favicon.ico in my entire web directory and weblogic domain, didn't find any (or rather: some others lying around but not the one I see).
I even searched for the string 'favicon.ico' in domain, web directory and iPlanet directory, in case it is in some configuration file, didn't find anything.
Any hint?
Edit: As pointed out by Sacha below, this is a default icon of the server. I would like to know where in the config it is located, and how to deactivate it. I found how to do that in documentation of iPlanet 7.0, but I am using iPlanet 6.0 and I can't find anything in the doc.
If there is no favicon.ico server displays a default one.It might be a xampp or wamp logo.If you want to customize put yours in your project root directory. Eg:- If your project name is saas put it in saas folder.
If going to localhost/favicon.ico shows you the icon, then it is there. I am not sure why it is not in the directory.
I was also facing the same problem in jBoss server of my jsp project in which the browser was showing by default server icon and there was no favicon.ico in my whole project directory
then i searched for the favicon on the server and it was there so i have remove that file from the server to remove any default favicon from my project.
I'm deploying sample Zend apps on Zend server, following official tutorials. No matter what I deploy the only thing that I can access is the hello world page (Hello world
says hello).
How can I access real application?
host/address/public and host/address/index.php or other permutations don't work...
When you create your zpk file with Zend Studio there is a deployment.xml file that specifies some vhost settings as well as various other dependencies and triggers.
If you double click this file within Zend Studio you will be presented with a gui that helps you create this file.
The two fields of importance to this question are "Application directory" and "Document Root". If you have a Zend Framework application the most likely settings for this are:
Application Directory: data
Document Root (main public directory): data/public
The document root is the most important part as it defines the directory where apache executes the first file.
You then export the project into a zpk and upload that within Zend Server.
Once uploaded you will be presented with a "Set Installation Details" screen. There you will define the virtual host directory name.
For a simple deployment to your localhost or your server IP you can have the following:
Display Name: Address App
Virtual Host: Default
Path: address
This will then deploy your application to: http://localhost/address or http://192.168.0.*/address
You can also deploy it with a url eg:
Display Name: Address App
Virtual Host: click "add new" then enter the url eg. myaddressapp.com
Path: leave blank
This will then deploy your application to: http://myaddressapp.com. IF you are not deploying to a live site you can fake the url by entering a record in your hosts file
Alternatively, I started writing a blog post a while ago on how to deploy to Zend Server in a VM. This does everything automatically so you dont have to rely on exporting and importing. Here is the work in progress of the post: https://docs.google.com/document/pub?id=1bR58tXWpkezomGiv9cnkySrXxKItoEUQ6E6V9a8n46A