我是Laravel的新人。在我的远程服务器ubuntu14.04上安装了laravel。我在/ www / html上创建了一个项目作为博客。然后运行
php artisan serve --host=10.x.x.12 --port=8010.
#Laravel development server started: <http://10.x.x.12:8010>
没关系。我可以通过该链接从我的本地窗口访问laravel。
问题是我使用putty进行远程访问。当我关闭腻子时,我再也无法访问10.x.x.12:8010。
如何从远程服务器连续使用laravel服务器。
答案 0 :(得分:1)
使用nohup
(man page),以便终端会话结束时程序不会退出。
nohup php artisan serve --host=10.x.x.12 --port=8010 &