I installed HP ALM tool,but when opening the app from the launcher,I have to fill this field to launch the tool:
I installed SQL-Server,but I can't connect even to the IP address defined in TCP properties with the browser:
This is the SQL server manager configuration:
any help please,I am working with windows 10 machine and I need to work with HP ALM tool.
Thanks
Related
I just installed MSSQL on debian 8 (64bit) fallowing this steps on this link. It installs ok, no errors, I can also use sqsh -S localhost -U sa and it connects and I can execute SQL commands normaly. I choose to install SQLExpress license, so I suppose that instance name is "\SQLEXPRESS"
I install MSSQL server on my "mini computer" that is connected to my router (which sets DHCP). With other devices connected to this router I can ping this "mini computer" and also in other side, from "mini computer" I can ping other devices. All devices are in Workgroup, and not in Domain. Also I can connect with SSL to this "mini computer".
But If I want to connect from my Windows computer from Microsoft SQL Server Management Studio, I get error, that I cannot connect to this "mini computer": The parameter is incorrect! What I am doing wrong, is it possible to make connection like this, or I have to have domain server?
when you get a message :
the connection is established, but an existing connection was forcibly closed by the remote server
that means the connection is correct but this error could happen sometime for windows version, try it with other windows version and other SSMS version.
I have installed windows server 2016 as a guest in VirtualBox and windows 7 and centos7 as geusts aswell.
I have configured a private network between them and dhcp and dns from windows server and it seems its working fine. Dhcp distributed ip's to the other guests.
To make it short w7 and centos are connected to windows server via dhcp.
I have installed wamp server on windows server and I want windows 7 and centos7 to access the database aswell.
I tried typing the ip/phpmyadmin but doesnt seem to work.
anyone had a similar project and can help me would be apreciated.
(sorry for my english I hope you understand)
I have two laptops one running Windows 8.1 and other running Windows 7. Both are connected to the same wifi router. I want to bring them on the same network because I want the Windows 7 machine to act as a Server so that I can host my SQL Server database on it.
Which means Windows 7 machine name should appear in list of 'Server Name' combo of SQL Server connection properties dialog box.
If they are connected to same router means they already are on a same network.
Assign unique IP to your laptops from router settings (Typically hosted at http://192.168.0.1/).
Do the ping test from cmd.
Enable TCP/IP Protocol for SQL Server.
You should now be able to connect SQL from remote machine with it's IP.
I have Ubuntu installed on my laptop, and I'm developing a web application with java, using eclipse, and I want to connect, with sql server. To do this I have installed sql server 2012 in my virtual machine(Virtual box).
I have installed windows 7. I'm using Bridged Adapter setting, to receive ip from dhcp.
I have tested connection with ping command and is running successful, but when I run my application I have this error: Unknown server host name 'PEACH-PC'
the PEACH-PC is the
have you added Peach-PC variable in the etc/hosts file? that may be the case. If not add the ip and the variable there.
I have a WinXP host with VirtualBox 3.1.2 installed. I have a VirtualBox image called "hydrogen" on which I installed WinXP and MS SQL Server 2005 Express. I have another VirtualBox image called "helium" on which I installed WinXP. I am trying to create a ODBC DSN on "helium" that connects to SQL Server on "hydrogen" but it fails.
All of the documentation I've seen so far only says to use a "bridged adapter" in my VirtualBox image settings. I've done that but I still don't have communication.
The express edition does not listen on remote ports by default. You can enable remote connections using the "Surface Area Configuration Tool" or by running this SQL script:
exec sys.sp_configure N'remote access', N'1'
go
reconfigure with override
go
Also, if you use a bridged adapter, your virtual boxes are sharing your host's IP address. That means you'll have to configure both instances of SQL Server on a separate port.
I've gone through a couple of tweaks and changes and I have it working. My environment:
Host:
WinXP Pro
SQL Server 2005
Guest "Hydrogen":
WinXP Pro
SQL Server 2005
Network Adapter #1: NAT
Network Adapter #2: Bridged
Guest "Helium":
WinXP Pro
Network Adapter #1: NAT
Network Adapter #2: Bridged
On "Hydrogen", I ran the Network Setup wizard, specifying that it was part of a network that did not have an internet connect (part of the "Other" option). I rebooted "Hydrogen".
On "Helium", I ran the Network Setup wizard, specifying taht it ws part of a network that did not have an internet connect (part of the "Other" option). I rebooted "Helium".
I turned off the firewall on "Hydrogen".
I can now connect to SQL Server on "Hydrogen" from both "Helium" and my host. Some of these settings may be extraneous; I don't know. But I know it's working for me reliably now, even after rebooting the host.