Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
连接到 mysql 数据库时,您通常会使用 --host=somehost。使用 mySQL 的 Windows 安装程序在本地创建数据库时,如何指定?是否可以?
我想澄清一下,我希望能够对其进行自定义 - 例如,我希望它类似于“CUSTOMNAME-HOST”,而不仅仅是“localhost”
谢谢。
这可以通过从您的操作系统更改主机文件来实现。
如果您使用的是 Windows 操作系统,请打开您的操作系统安装目录,然后:Windows>System32>drivers>etc
Windows>System32>drivers>etc
然后打开您的主机文件并将其更改127.0.0.1 localhost 为
127.0.0.1 localhost
127.0.0.1 CUSTOMNAME-HOST
保存。