Invalid node channel message when working with chrome headless

I am trying to run chrome on an amazon machine to be able to use it in a smaller mode, but it failed when I want to run it:

[root@ip-*** dev]# google-chrome --version
Google Chrome 59.0.3071.115


[root@ip-*** ec2-user]# google-chrome --headless --disable-gpu --remote-debugging-port=9222 https://www.chromestatus.com
[0705/030438.715171:WARNING:audio_manager.cc(293)] Multiple instances of AudioManager detected
[0705/030438.715202:WARNING:audio_manager.cc(254)] Multiple instances of AudioManager detected
Trace/breakpoint trap
[root@ip-*** ec2-user]# [0100/000000.732486:ERROR:broker_posix.cc(41)] Invalid node channel message

Has anyone already managed to run chrome on ec2?

+4
source share
1 answer

Install unstable version

yum install google-chrome-unstable

Install fonts

yum install  \
 ipa-gothic-fonts \
 xorg-x11-fonts-100dpi \
 xorg-x11-fonts-75dpi \
 xorg-x11-utils \
 xorg-x11-fonts-cyrillic \
 xorg-x11-fonts-Type1 \
 xorg-x11-fonts-misc -y
+10
source

Source: https://habr.com/ru/post/1680771/


All Articles