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 的过程。现在如果我重新启动 apache 那么它会影响将数据库导入到 mysql 进程吗?
请告诉我。
谢谢你。
如果您使用 PHP 与 MySQL 通信,那么重新启动 Apache 可能会受到干扰。如果您运行apachectl graceful它,它将等待所有当前打开的连接关闭,然后再重新启动,这是一个非常漂亮的功能。
apachectl graceful
如果您通过命令行连接到 MySQL,那么不重新启动 Apache 将不会有任何影响。