Solr Admin Page Shows No Information - solr

I'm in the process of trying to get Solr running for my company. I've installed 4.10.3 on a server and have indexed the example docs that come with the zip file. When I start Jetty and go to localhost:8983 in the browser I see the admin screen as expected. But when I use the server's full name instead of localhost, I get the following result:
The information panel is completely empty, while using the localhost URL shows the expected graphs and information. I'm running a Win 2008 R2 server. What is preventing me from seeing this information?
The next step is to then try connecting to the same implementation from a client computer using the server's URL, but I have a feeling I need to get this straight before I get to that step.

Related

IIS 8.5 Custom Fields breaks LogParser 2.2

So LogParser has been a tool that I have used to load IIS Logs into a SQL Server database on a daily basis.
The problem is that if you use the new IIS 8.5 custom fields it will break LogParser with this sort of error:
Unknown field found in #Fields directive
I have looked at the various formats and don't see anything that is very interesting. It would appear that I would have to write a COM object to read the IIS file.
Looks like I am going to be creating my own loader for the IIS Logs unless anyone has any other ideas?
I wish the LogParser code was released to GitHub.

Configure OM2M to connect to the server

https://wiki.eclipse.org/OM2M/one/Advanced_DB
I am developing an IoT project based on Eclipse OM2M project. I've been trying to do the same thing as the tutorial above did in the "Run H2 in another mode" part. In the tutorial, it said that the default database(h2) was running in embedded mode. My goal was to run the h2 database in server mode as the tutorial above did.
In h2 database part:
I started a TCP server using command
java -jar h2-1.4.196.jar -webAllowOthers -tcpAllowOthers
and it showed that the TCP server is running at tcp://127.0.1.1:41903
(The port may change every time I started a new TCP server). After I successfully started the server, I tested the connection using the web console of h2 so I think my h2 server was started correctly.
In OM2M part:
I modified some configurations in the config.ini file as below:
org.eclipse.om2m.dbUrl=jdbc:h2:tcp://127.0.1.1:41903/~/indb (set
database url) org.eclipse.om2m.dbUser=sa (set database user)
org.eclipse.om2m.dbPassword= (no database password)
However, when I ran sh start.sh in cmd to start the CSE, there were always errors shown in the picture below:
Since there's only a few information in the tutorial, I don't really know if I configure the file wrong. It seems like OM2M was not able to find my h2 database.
Can anyone tell me where I did it wrong?

Configuring the Pre-Packaged Identity Server 5.0.0 with API Manager 1.9.0

Hello I m trying to configure Identity Server and API manager .
using the official
Tutorial here
Here it is mentioned that "Make the following change in the IS_HOME/repository/conf/api-manager.xml file. Change the under the section so that it points to the API Manager server".
but Their is no api-Manager.xml exist in above mentioned directory or in any other of identity Server.
Still i made changes in api-manager.xml of Wso2 API Manager.
But running The following Command to start the server : PRODUCT_HOME/bin/wso2server.sh -Dsetup
i m getting Windows Popup Stating , Windows can't open the file Wso2server.sh to open this file choose the program below .
Please correct me where i m doing wrong.
If you are running on windows try running wso2server.bat instead of wso2server.sh.
Joe
You still need to copy the api-manager.xml across from the API Manager VM to the Identity Server. the changes need to be made to api-manager.xml in both servers.
Also when starting the server in unix, make sure you have environment variables set, JAVA_HOME and CARBON_HOME.

How to remove url reservation in SSRS

During a recovery process I have uninstalled and re-installed Sql Server 2008 R2 a couple of times with different instance names. I have recovered the database and want to configure the report server the way it was before.
My problem occurs in Reporting Services Configuration Manager when I try to apply defaults for the web service url. I get this error:
Reserving url http: //+:80 The Url has already been reserved.
How do I un-reserve the url so that it can be applied to the new installation?
Make sure your current binding isn't from IIS or another webserver process, as deleting it could cause... badness
Ensure your old SSRS instance is completely uninstalled (as the uninstallation process should free these bindings). Next, fire up a command prompt window in admin mode (must be in admin to delete), and do:
Check your existing reserved URLS:
netsh http show urlacl
Delete the URLs you don't want, using the exact same values shown on the "Reserved URL" line from the "show" command:
netsh http delete urlacl URL=http://+:80
You might consider binding your next install to a more specific URL, as the current wildcard binding will take all web (port 80) traffic coming to the server.

Why aren't my charts in SSRS 2012 displaying?

I recently moved several reports over to a new server. Everything works fine displaying tables and data, but charts are not displaying properly. It looks like the image is not rendering properly. My initial thought was that this was a permissions issue, specifically that the service account used to run SSRS needed permissions to a certain folder on the server that is used to generated chart images, but I can not find anything about this in searching for a solution.
This happens with old reports that display fine on the original server and new reports I try making on the new server.
EDIT: SSRS logs are showing a generic error in GDI+. Looks like this may be the issue, especially since this is running on a virtual server:
http://social.technet.microsoft.com/Forums/en-US/37ed20b2-99bc-4e36-a14b-c9f8cc297be3/ssrs-2012-reports-with-charts-generic-error-in-gdi-?forum=sqlreportingservices
I am curious about a point made in this question:
2) Ensure write permissions on the "folder to which SSRS caches the charts"
Well, firstly, I have not found a single article on the net as to
where this folder is; however, I tested this locally on the server
while logged in as Administrator with full privileges. This doesn't
seem to apply to my situation either.
Does anyone know about this folder? I would imagine that running while logged in as an admin would not mean anything since the service account running SSRS would need the correct privileges.
Someone had a similar problem and the solution was to repair the SQL Server installation. I know it is quite long to run but it might be worth a try.
Equivalent topic in SO
You can try restarting the report server. That worked in my case with Sharepoint and SQL Server 2012. Or repair the SQL server installation on the server as some posts suggest.
SSRS 2012 Charts Not Rendering
I had the same issue when deploying a new report locally.
I restarted my Report Server service and the reports rendered fine.

Resources