How to run multiple Laravel projects at same time?

后端 未结 3 942

To run one laravel project we only need to type \"php artisan serve\". and it will be available on port 8000.

But sometimes we need to run multiple projects at the same

相关标签:
3条回答
  • 2021-02-08 04:38

    tl;dr one cannot have more than one listener per TCP port at the same time. If you need more web server instances: try another port:

    php artisan serve --port=8001
    

    then go to http://localhost:8001


    References:

    • Can two applications listen to the same port?
    • https://laravel.com/docs/8.x
    0 讨论(0)
  • 2021-02-08 04:46

    You can also run web server on multiple port in PHP application by the following command.

    php -S localhost:8000 
    php -S localhost:8080
    
    0 讨论(0)
  • 2021-02-08 04:47

    First run your first laravel project blog as follows: Open your command prompt and go to your drive where your laravel project exist. And type php artisan serve

    C:\xampp\htdocs\blog>php artisan serve
    

    Now type http://localhost:8000 in browser and your blog project will run.

    Again open another command prompt and again go to your another laravel project bloganother

    C:\xampp\htdocs\bloganother>php artisan serve --port=8080
    

    Now go to your browser and type http://localhost:8080 in your browser your another project will also run.

    Thank you for reading this article. Hope your problem get solved.

    You can also get your solution from this link

    0 讨论(0)
提交回复
热议问题