How to connect to remote hosted sql server [closed] - asp.net

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 think I am doing everything right but I am not being able to access the sql server online. I have put my settings beneath. Of course the password is hidden. Any help?

Looks like the Server name should be MSSQL1228.wc1\inst2. You currently have MSSQL1228\inst2.

Your instance name is wrong
replace mssql1228\inst by mssql228.wc1\inst
If that doesn't work try the IP address 50.57.219.8,4120
And if that doesn't work, you might need to validate that your user has permissions to access that specific database.
Without knowing your specific error message is hard to know 100% what's wrong

Related

How to start using MongoDB and MongoVue? [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 6 years ago.
Improve this question
I am just trying to learn MongoDB. I followed this walktrough to install it:
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/
Here is my screenshot for mongod.exe:
And here isthe screenshot of mongo.exe:
It seems everything is fine to me. Am I wrong?
During my googlings I decided that MongoVue is a good management application for MongoDB by a cool user interface. So I downloaded and installed it. Here is the screen I see when I opened it:
How do I have to fill these fields to create a connection from MongoVue to MongoDB? Do I have to do something else before that?
Assuming you haven't configured authentication within MongoDB, just give the connection a name and fill in the IP address of the server (127.0.0.1 if it's local):
Click Test to test out the settings and then Save to create the connection. Then click Connect on the parent dialog to actually connect to the server.
Caution
MongoVUE doesn't work with 3.x MongoDB servers and hasn't been updated in almost two years. See here for alternatives.

filezilla not connecting to a specific server but connecting to other [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 7 years ago.
Improve this question
I am using filezilla as my ftp client and I was successfully using it. But now filezilla is not connecting with one of my server. But it connects to other servers.
So I was confused and I thought the server may down. But when I checked in downorisitjustme.com the server appears to be online. Don't know what is going on. Can you guys please help me on it?
Can you please check your FTP services status and try to stop firewall on your server, may be due to firewall you are unable to connect FTP server.
Actually it was a problem with my hosting side. They blocked my IP, may be because of a number of unsuccessful login attempt. And it got solved. Thanks guys.

How to configure vsftpd to send me an email on user login process? [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 want to send a mail to abc#abcd.com when someone is logging in via FTP. I have tried using /etc/pam.d/vsftpd "session optional pam_exec.so /path/to/my/emailing_script.sh" but it doesn't work (i have tested this script in /etc/pam.d/sshd and it works).
Any suggestions?
Thanks in advance.
In order for vsftp to use the pam sessions you need to enable it in the configuration file:
add (or update) the line
session_support=YES
without that line PAM sessions will not be used so your PAM session module will not be run either.
Look for "session_support" on this documentation page.

How to get database Deletion Time? [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 had used DROP DATABASE command to drop a database. Is there any way through which I can see the time at which the DROP command was executed (i.e. at what time the database got deleted)?
Can I get it by reading any SQL or Windows log?
Thanks in advance.
If you are running Ms SQL Server 2005 or later, you can get it from the default log.
SELECT * FROM ::fn_trace_getinfo(default)
Find the filename of the trc-file in the results.
select * from fn_trace_gettable('PATH_TO_TRC_FILE',DEFAULT) where EventClass in (47) and databasename='NAME_OF_DB'
Replace the path to the trc-file with your path from previous command and NAME_OF_DB with the name of the database you want to know about.
See this page for details
Good luck!

Display current path in terminal only [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 9 years ago.
Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions.
I'm SSH'd into a computer, so I can't use a GUI to access the path name. Is there a way that you can see the path directly on terminal without having to use Nautilus?
If you just want to get the information of current directory, you can type:
pwd
and you don't need to use the Nautilus, or you can use a teamviewer software to remote connect to the computer, you can get everything you want.

Resources