Confirmed users
1,364
edits
(add apache traffic) |
(add FAQ section) |
||
Line 11: | Line 11: | ||
The high level status of git and supporting infrastructure can be seen on the [http://status.mozilla.org/ main Mozilla status page]. You can also view [https://graphite-scl3.mozilla.org/render/?width=586&height=308&_salt=1420764233.108&yAxisSide=right&title=git%201%20mem%20used%20%26%20load&from=-16hours&xFormat=%25a%20%25H%3A%25M&tz=UTC&target=secondYAxis(hosts.git1_dmz_scl3_mozilla_com.load.load.shortterm)&target=hosts.git1_dmz_scl3_mozilla_com.memory.memory.used.value&target=hosts.git1_dmz_scl3_mozilla_com.swap.swap.used.value&target=secondYAxis(averageSeries(hosts.git*_dmz_scl3_mozilla_com.cpu.*.cpu.idle.value)) current host load] and [https://graphite-scl3.mozilla.org/render/?width=688&height=308&_salt=1423692927.323&yAxisSide=right&title=git%201%20Apache&from=-16hours&xFormat=%25a%20%25H%3A%25M&tz=UTC&target=secondYAxis(hosts.git1_dmz_scl3_mozilla_com.apache.apache80.apache_requests.count)&target=hosts.git1_dmz_scl3_mozilla_com.apache.apache80.apache_bytes.count Apache traffic]. | The high level status of git and supporting infrastructure can be seen on the [http://status.mozilla.org/ main Mozilla status page]. You can also view [https://graphite-scl3.mozilla.org/render/?width=586&height=308&_salt=1420764233.108&yAxisSide=right&title=git%201%20mem%20used%20%26%20load&from=-16hours&xFormat=%25a%20%25H%3A%25M&tz=UTC&target=secondYAxis(hosts.git1_dmz_scl3_mozilla_com.load.load.shortterm)&target=hosts.git1_dmz_scl3_mozilla_com.memory.memory.used.value&target=hosts.git1_dmz_scl3_mozilla_com.swap.swap.used.value&target=secondYAxis(averageSeries(hosts.git*_dmz_scl3_mozilla_com.cpu.*.cpu.idle.value)) current host load] and [https://graphite-scl3.mozilla.org/render/?width=688&height=308&_salt=1423692927.323&yAxisSide=right&title=git%201%20Apache&from=-16hours&xFormat=%25a%20%25H%3A%25M&tz=UTC&target=secondYAxis(hosts.git1_dmz_scl3_mozilla_com.apache.apache80.apache_requests.count)&target=hosts.git1_dmz_scl3_mozilla_com.apache.apache80.apache_bytes.count Apache traffic]. | ||
<div id="FAQ"></div> | |||
= FAQ = | |||
* '''I get a 404 in my browser then I access the repository via the URL on the summary page!''' | |||
** The URLs listed on a repository's summary page are useful only with git, and you can not web browse the repository using the same URL. For example, using the [http://git.mozilla.org/?p=bugzilla/bugzilla.git;a=summary Bugzilla repository] as an example: | |||
<pre> | |||
# HTTP(S) is not supported | |||
$ curl -s -I https://git.mozilla.org/bugzilla/bugzilla.git | grep ^HTTP | |||
HTTP/1.1 404 Not Found | |||
# git+http is supported | |||
$ git ls-remote https://git.mozilla.org/bugzilla/bugzilla.git master | |||
6419b7fcbf9c8efa2d7b55c7e40cfbdf08a5cd5c refs/heads/master | |||
# git+ssh is supported | |||
$ git ls-remote ssh://gitolite3@git.mozilla.org/bugzilla/bugzilla.git master | |||
6419b7fcbf9c8efa2d7b55c7e40cfbdf08a5cd5c refs/heads/master | |||
</pre> | |||
<div id="troubleshooting"></div> | <div id="troubleshooting"></div> | ||
= Troubleshooting and Problem Reporting = | = Troubleshooting and Problem Reporting = |