Symfony 服务器未启动

Symfony server not starting

我设置了 Symfony 3,当我尝试启动服务器时,发生了以下情况:

[heigold1@centos aqua_note]$ php bin/console server:start
[OK] Server listening on http://127.0.0.1:8000    

[heigold1@centos aqua_note]$ (it goes back to the command prompt???) 

[Symfony\Component\Debug\Exception\UndefinedFunctionException]                              
Attempted to call function "posix_setsid" from namespace "Symfony\Bundle\WebServerBundle".  
    server:start [-d|--docroot DOCROOT] [-r|--router ROUTER] [--pidfile PIDFILE] [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [-e|--env ENV] [--no-debug] [--] <command> [<addressport>]

然后当我转到 http://127.0.0.1:8000 时,我收到以下消息:



        This site can’t be reached

        127.0.0.1 refused to connect.



任何帮助是极大的赞赏。

您似乎缺少 php-posix 扩展程序。安装(或启用)解决问题。

查看 phpinfo() 的输出以查看安装了哪个扩展。

试试这个:

php bin/console server:start --force

因为你的服务器已经启动

或:尝试调用--help

php bin/console server:start --help

........................................................

你也可以试试这个

yum install php-process

启用posix。适用于 php71