8000 [Cookbook][WebServer] #5504 add a tip for the --force option by vincentaubert · Pull Request #5521 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Cookbook][WebServer] #5504 add a tip for the --force option #5521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 23, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
[Cookbook][WebServer] #5504 add a tip for the --force option on serve…
…r:start
  • Loading branch information
vincentaubert committed Jul 15, 2015
commit b88a17e3255744631f9a5267366b067a4b5c59be
9 changes: 9 additions & 0 deletions cookbook/web_server/built_in.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ can change the socket passing an IP address and a port as a command-line argumen

$ php app/console server:run 192.168.0.1:8080

.. note::

You can use the ``--force`` option to force the web server start
if the process wasn't correctly stopped (without using the ``server:stop`` command).

.. code-block:: bash

$ php app/console server:start --force

.. note::

You can use the ``server:status`` command to check if a web server is
Expand Down
0