The 104.238.72.167:2083 page isn’t working - serve

I am trying to connect to the remote host server to acess the cpanel but the linkThe 104.238.72.167:2083/ not working .But the same addreass is working on other computer.Plz help me how to sort this problem

Related

Keycloak federation with LDAP fails to make the connection : Error! Error when trying to connect to LDAP. See server.log for details

I am trying to create a federated authentication using the Keycloak and following the steps mentioned here: Setup User Federation with Keycloak
I have been using the port 10389 instead of 389 mentioned in the document. Everything seems to be working fine until the step where I am making the connection from Keycloak to LDAP.
When I provide the Connection URL as ldap://localhost:10389 and click on the Test Connection then I get the error:
Error! Error when trying to connect to LDAP. See server.log for details
I am not sure what's wrong because when I check in the Apache Directory Studio there everything seems to be working fine for me and I am able to get all the users list etc. I am not sure why I am unable to make the connection from Keycloak to LDAP.
I tried the following things but nothing worked for me:
ldap://localhost:10389
localhost:10389
ldap://127.0.0.1:10389
ldap://localhost:389
Stopped the docker in the dashboard and started again.
After trying a lot I found the solution. Posting the answer as it can be useful to someone else in the future.
I was using the localhost and 127.0.0.1 which was not working. Finally, I checked the IP Address of my system using the terminal (for mac ipconfig) and tried that and it worked:
ldap://192.168.1.12:10389

"The website cannot display the page" error when accessing the SSRS Report Manager 2012

I'm trying to connect to a SSRS 2012 Report Manager on a Win Server 2012 server.
I'm getting "The website cannot display the page" error. Can't figure out why.
I've tried the following things:
Browsing either to the computer's name url and either to the computer's network ip address
Changing the service login type.
Running IE as Administrator
I can connect to the Web Service and I can view reports through it.
I'm connecting with a Domain Admin account.
Would appreciate any help. Thank you.
Ok. The answer was indeed detected in the Windows Event Log. Thanks.
Adding the SSRS host as a trusted site in the browser fixed this for me.

Can't connect to MySQL server on 'amazon web server path' shows wrong path

We are building up website in magento. it was working well until last night. But when i merged with the other programmer. I am having this issue.
It gives me this error "SQLSTATE[HY000] [2003] Can't connect to MySQL server on 'amazon web server' (4)".
I know its problem of database path and it can resolved by changing path into app/etc/config.xml . But it shows me localhost as a host name.
I was using localhost at first and it was working.
I am not sure why this is happening.
Any Help would be appreciated.
i changed path in app/etc/local.xml, and now it's working. Before it was pointing to amazon web server, i changed it to localhost.

how to configure xamp?

recently i installed xamp server on my VPS (windows xp sp3)
and i installed mysite there
i am successful to run my from
http://localhost.com/mysite/index.php
and http://xxx.xxx.xxx.xx/mysite/index.php (locally on my vps ,where xx.xxx.xxx.xx is my server IP )
but when i am trying to access the link http://xxx.xxx.xxx.xx/mysite/index.php from my home pc its saying waiiting and finally blank white page coming :(
can any one help me in this issue
thanks in advance
Edit : Damn i didnt turned off windows firewall ,Problem solved ,If some one faced this issue just turn off u r windows firewall:)
In addition of opening the firewall, edit the httpd-xampp.conf in xampp\apache\conf\extra folder.
The last rule is there to unallow unexepected navigation on configuration pages.

Oracle 10g express home page is not coming up

I installed Oracle 10g express. Installation went well, But the home page is not coming up.
I can connect using sqlplus but not with Sql Developer.
I checked tnsnames.ora and listener.ora everything looks fine.
Listener is also started. I can always reinstall and see. But I thought better inquire the cause.
Regarding the home page. This is the address that comes up in browser. Localhost:8080
http://127.0.0.1:8080/apex
I did a netstat to see whether there is any port conflict for 8080, but that port is not in use.
Have anybody faced this issue?
Yes. It is practically a FAQ on the XE Oracle forum.
Firstly, can you connect to Oracle using
sqlplus user/pass
If so, Oracle is up an running (which appears to be your situation, but may not be for a future reader with a similar problem). If not, you can try
sqlplus / as sysdba
startup
Once Oracle is up, check that the listener can see the Oracle instance by
sqlplus user/pass#xe
If not, then either the listener is not up, or the 'listener does not know of the service'. Make sure the listener is started (lsnrctl, then start). Make sure the database is registered with the listener
sqlplus / as sysdba
alter system register;
Now you should be able to connect using the '#xe' syntax. Worthwhile verifying the embedded PL/SQL gateway is set up to use the 8080 port
select dbms_xdb.GETHTTPPORT from dual;
On Windows you can use netstat -ab to see if tnslsnr.exe is listening on the port.
Then I'd suggest looking at browser settings (specifically any proxy settings that might be forwarding your request to a machine that has no idea what to do with it) and firewalls (which could well be set to ignore or hide any access to the port).
I had the same problem. I tried this and it sorted out my problem...
1. goto start->run
2.type services.msc and hit enter
3.In the applet that opened, scroll down(in right pane) to figure out the option of "OracleServiceXE" and right click on it. 4. In general tab do->>> startup type "Automatic" and click the "start button".
5. Repeat step 4. for the option "OracleXETNSListener".
close the window.
now, i hope, the problem should be solved....
Check your windows firewall,If it is on it blocks the opening of the homepage.Either you shut down the windows firewall or allow these following ports :
1521: Oracle database listener
2030: Oracle Services for Microsoft Transaction Server
8080: HTTP port for Oracle XML DB and the Oracle Database XE graphical user interface
See software requirements in the below URL:
http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#BABEBCDB
It worked for me!
Try this ( I'm assuming Windows system )
using
netstat
without anyother parameter would tell you if port 8080 is already open.
Also you can try this:
telnet localhost 8080
If the server answers ( the screen goes blank [or black] ) then the server is up and running.
Try using your hostname instead of localhost.
See if you're using a proxy and not skipping the local addresses.
Also you can see what's the executable that starts the home page and see if it could start successfully.
Thanks for the response guys.
I finally figured out how to solve the issue, but not really the root cause.
Problem 1 - Can not login to oracle admin console.
It was the problem with not adding 127.0.0.1 in the IE intranet sites.
Go to tools>internet options>security>local intranet sites>advanced>
add http://127.0.0.1:8080/apex in the list.
It works fine after this.
But if I go back to the same place again and see the sites, I cant find the url I added sometimes back... Dont know why that is happening. May be some company security is messing up.
Anyways the admin console is now coming up.
Problem 2 - Cannot connect using SQL Developer.
After I did the fix for problem 1, this is also magically working.
I still don't know how security settings in IE affects SQL Developer?
Any comments on this?
hey guys one important fact if u r using IE7 (explorer7) then u wd face certain problem in using 10g, such as not displaying home page.
For Windows 8 simply click on Get Started With OracleXE.... When internet explorer opens up, select the View on the desktop option in the Page View icon (icon with a wrench).
You should now be able to view your page.
I had a similar problem, I was able to connect to SQLPLUS using terminal but on access in browser as it was showing error as you have described. So, I went back to terminal and mounted my database using
startup
and it resolved my problem. This might be the case.