在 Windows Server 2003 Enterprise Edition 上并行安装 SQL Server 2008 R2 和 MySQL 是否安全?
这样的配置有什么缺点吗?
Are there any drawbacks to such a configuration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这两个数据库是完全独立的实体,在同一台计算机上运行它们应该没有问题。
简短的故事:我想用各种数据库方言测试 Hibernate,所以我最终在一台机器上安装了这些数据库:
和我在同时运行它们时没有任何问题。是的,这是一个测试服务器,可怜的东西完全耗尽了内存,但一切都正常。
您唯一可能遇到的问题是:为多个数据库配置相同的端口。但你不会这样做,所以这不是问题。
These two databases are totally separate entities and you should have no problems running both of them on the same machine.
Short story: I wanted to test Hibernate with various database dialects, so I ended up installing these databases on one machine:
and I had no problems with all of them running at once. Yes, it was a test server and the poor thing was totally running out of memory, but everything did work.
Only imaginable problem you could run into: configuring the same port for multiple databases. But you wouldn't do that, so it's not a problem.
除了它们都会消耗的资源(内存、磁盘、CPU)之外;除非有任何有目的的冲突配置(默认情况下它们将侦听不同的端口),否则它会正常工作。
Aside from the resources they would both consume (memory, disk, cpu); barring any purposeful conflicting configuration (by default they will listen on different ports), it would work fine.
据我所知没有。我在同一个盒子里为我的网站使用 MS SQL 和 MySQL,到目前为止没有任何问题(现在已经 2 年了!)
No as far as I know.. I use both MS SQL and MySQL for my websites in the same box and no issues so far (2 years now!)
我从来没有遇到过问题;他们真的根本不踩对方的配置。
I have never run into an issue; they really don't step on each others' configurations at all.