egg脚手架搭建的项目无法使用start启动问题([egg-scripts] ignore tail error: Error: spawn tail ENOENT)

在node上运行egg服务器出现了图片中的问题

egg脚手架搭建的项目无法使用start启动问题([egg-scripts] ignore tail error: Error: spawn tail ENOENT)_第1张图片

[egg-scripts] tail -n 100 C:\Users\XLZ\logs\master-stderr.log
[egg-scripts] ignore tail error: Error: spawn tail ENOENT
[egg-scripts] at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)
[egg-scripts] at onErrorNT (internal/child_process.js:467:16)
[egg-scripts] at processTicksAndRejections (internal/process/task_queues.js:82:21) {
[egg-scripts] errno: -4058,
[egg-scripts] code: ‘ENOENT’,
[egg-scripts] syscall: ‘spawn tail’,
[egg-scripts] path: ‘tail’,
[egg-scripts] cmd: ‘tail -n 100 C:\Users\XLZ\logs\master-stderr.log’
[egg-scripts] }
[egg-scripts] Start got error, see C:\Users\XLZ\logs\master-stderr.log
[egg-scripts] Or use --ignore-stderr to ignore stderr at startup.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: egg-scripts start --daemon --title=egg-server-sc-serve
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! D:\node\node_cache_logs\2022-11-24T02_49_57_737Z-debug.log

经过排查问题出在端口号被占用,项目中默认使用的端口号是7001,若是有其他项目占用了该端口号,需要手动去修改当前项目的端口号

方法一

在config/config.default.js文件中自定义端口号

// config/config.default.js
module.export = appInfo => {
    const config = exports = {}
    
    config.cluster = {
        listen:{
            path:'',
            port:5000,
            hostname:'127.0.0.1'
        }
    }
 
    return {
        ...config
    }
}

方法二
将package.json文件中的 "start": "egg-scripts start --daemon --title=egg-server-sc-serve"修改为"start": "egg-scripts start --port=端口号 --daemon --title=egg-server-sc-serve"

修改前:
egg脚手架搭建的项目无法使用start启动问题([egg-scripts] ignore tail error: Error: spawn tail ENOENT)_第2张图片
修改后:
egg脚手架搭建的项目无法使用start启动问题([egg-scripts] ignore tail error: Error: spawn tail ENOENT)_第3张图片
经过上述方法,解决问题

你可能感兴趣的:(#,nodejs,前端问题及案例,前端,node.js,egg)