是否可以拆分專用盒子的實例以在單獨的主機上爲mySQL服務。例如:在子域上創建MySQL服務器
- www.site.com - IP 192.1.1.1
- mysql1.site.com - IP 192.1.1.2
,然後我可以在這個單獨的子域服務器上託管的MySQL甚至做:
$dbhost="mysql1.site.com";
或
$dbhost="mysql1.site.com:3001";
// i dont know how to make ports
我看到有人這樣做,在一次例如有
- mysql1.site.com
- mysql2.site.com
- mysql3.site.com
其中mysql1每複製30秒到2和3,如果1失敗,2和3準備備份..
但我可以做到嗎?通過DNS使子域使用動態IP? – TheBlackBenzKid
像這樣看:$ dsn ='mysql:// user:pass @ localhost/openid'; – TheBlackBenzKid
讓我們假設site.com和mysql.site.com域都指向同一個框。在那個盒子上運行着mysql和http服務器。是的,你可以在同一個盒子上運行。 –