I wanted to know if it’s possible to have a page on another server query the database on our server, or is that a big security no no?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is a very common practice.
Sometimes several applications are sharing the database(s).
Sometimes the database is on its own server so that the server can be optimized for the database, and the database can use all of the server resources instead of sharing them with the web server.
Security is handled by setting permissions in the database, regardless of whether the calling application is on the same machine. Generally, applications will operate with their own identity and credentials. They are given very limited permissions on the database.