在Google Cloud Platform的Ubuntu 16.04.1实例中,我的启动脚本的输出已写入with tbl1 as
(SELECT A,B,C,DATE,E,
first_value(date) over( order by date desc) maxdate
FROM TABLE A)
select A,B,C,DATE,E from tbl1 where date = maxdate
。
自从他们升级到/var/log/startupscript.log
后,我再也找不到日志了。
有什么想法吗?
答案 0 :(得分:10)
的更新
启动脚本输出将写入以下日志文件:
CentOS和RHEL:/ var / log / messages
Debian:/var/log/daemon.log
答案 1 :(得分:-1)
有两种方法可以搜索日志文件,但我知道以下内容。
locate -i startupscript.log
- 您可能需要定期更新索引,以使此选项达到最佳状态。find / -iname startupscript.log -print
。