nginx: [alert] could not open error log file: CreateFile() “logs/error.log“ failed (3: The system ca

原因:没有进入nginx安装文件夹下面执行操作nginx的命令  

自己写了个用node启动nginx的脚本  

// 启动关闭系统中安装的nginx服务
import chalk from 'chalk'
import { exec } from 'child_process'
// import util from 'util'

// const execPromise = util.promisify(exec)

const nginxPath = process.env.Path.split(';').find((item) => {
  return item.includes('nginx')
})
const _pIndex = process.argv.findIndex((item) => item === '-p')
const val = process.argv[_pIndex + 1] || ''
if (nginxPath) {
  console.log(chalk.blue('nginx地址为:'), nginxPath)
} else {
  console.log(chalk.red('您的操作系统未配置nginx的环境变量'))
}
process.chdir(nginxPath)

function handleCallback(error, stdout, stderr) {
  if (error) {
    console.error(chalk.red(`执行出错: ${error.message}`))
    return
  }
  if (stderr) {
    console.error(chalk.red(`标准错误输出: ${stderr}`))
    return
  }
  console.log(chalk.green(`标准输出: ${stdout}`))
  // process.exit(0)
}

// async function runCommand() {
//   try {
//     const { stdout, stderr } = await execPromise(
//       val === 'start' ? 'start nginx' : 'nginx -s stop',
//       { cwd: nginxPath },
//     )
//     console.log(`标准输出: ${stdout}`)
//     if (stderr) {
//       console.error(`标准错误输出: ${stderr}`)
//     }
//   } catch (err) {
//     console.log('执行出错', err)
//   }
// }

if (val === 'start') {
  const pr = exec(
    'start nginx',
    { cwd: nginxPath, timeout: 1000 },
    handleCallback,
  )
  pr.stdout.on('data', (data) => {
    console.log('data', data)
  })
} else if (val === 'stop') {
  exec('nginx -s stop', { cwd: nginxPath, timeout: 1000 }, handleCallback)
}
// 改变工作目录
// console.log('cwd', process.cwd())

// runCommand()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值