Chrome net::ERR_CERT_AUTHORITY_INVALID
Contents
解决方案
1 升级 Chrome 到最新版
2 chrome.exe –ignore-certificate-errors –ignore-urlfetcher-cert-requests
其他 chrome 选项
chrome.exe --disable-background-networking --disable-client-side-phishing-detection --disable-default-apps --disable-hang-monitor --disable-popup-blocking --disable-prompt-on-repost --disable-sync --disable-web-resources --enable-automation --enable-logging --force-fieldtrials=SiteIsolationExtensions/Control --ignore-certificate-errors --log-level=0 --metrics-recording-only --no-first-run --password-store=basic --remote-debugging-port=12207 --safebrowsing-disable-auto-update --test-type=webdriver --use-mock-keychain
使用忽略证书错误的配置项
Linux
mkdir -p ~/.chrome;/opt/google/chrome/chrome -incognito --ignore-certificate-errors --proxy-server=http=http://localhost:3331\;https=http://localhost:3331 --user-data-dir=~/.chrome
Windows
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -incognito --ignore-certificate-errors --proxy-server=http=http://localhost:3331;https=http://localhost:3331 --user-data-dir="C:\Users\%Username%\AppData\Local\Temp\TestChromeProxy"
SSL 问题
https://troubleshooter.xyz/wiki/fix-err_ssl_version_or_cipher_mismatch-chrome-error/
ERR_SSL_VERSION_OR_CIPHER_MISMATCH on Chrome [SOLVED]
参考资料
https://stackoverflow.com/questions/26388405/chrome-disable-ssl-checking-for-sites
http://peter.sh/experiments/chromium-command-line-switches/
https://www.chromium.org/developers/how-tos/run-chromium-with-flags
Leave a Reply