Performing a search
Open search
Click the search box in the top navigation bar, or press the shortcut key if configured. Alternatively, go to
/search.Enter a query
Type one or more keywords. By default, all words must be present in the results (all words mode).
Select the scope
Choose how broadly to search:
- This project — current project only
- This project and subprojects — includes all descendant projects
- My projects — all projects you are a member of
- My bookmarks — projects you have bookmarked
- All projects — all projects visible to you
If you type a number (or
# followed by a number) in the search box, Redmine redirects you directly to the issue with that ID, bypassing the search results page.Search scope
| Scope | Description |
|---|---|
| This project | Searches only within the currently open project. |
| This project and subprojects | Includes the current project and all its descendants. |
| My projects | All projects where you are a member. |
| My bookmarks | Projects you have starred or bookmarked. |
| All projects | Every project visible to you (including public projects). |
When searching within a specific project, the Projects content type is removed from the scope automatically, since you are already inside a project.
Searchable content types
Redmine indexes the following content types:| Content type | Fields searched |
|---|---|
| Issues | Subject, description |
| News | Title, summary, description |
| Documents | Title, description |
| Changesets | Comments/commit messages |
| Wiki pages | Title, body text |
| Messages (forums) | Subject, content |
| Projects | Name, identifier, description |
Search options
All words
All words
When enabled (the default), results must contain all search terms. Disable this option to return results that contain any of the terms.
Titles only
Titles only
When enabled, only the title or subject field is searched, not the body content. Useful for finding a specific issue or page by its exact name.
Search in attachments
Search in attachments
When enabled, the file names of attachments are included in the search. Note that file contents are not indexed — only the attachment file name is matched.
Open issues only
Open issues only
When enabled for an issues search, only issues with a non-closed status are returned.
Understanding results
Results are grouped by content type and sorted by relevance. Each result shows:- Type icon — identifies whether the result is an issue, wiki page, news item, etc.
- Title or subject — links to the resource
- Project name — the project the resource belongs to
- Date — the creation or last-updated date
- Excerpt — a snippet of matching content with search terms highlighted
Pagination
Results are paginated. The number of results per page is controlled by Administration → Settings → Results per page (default: 10). For API requests, pagination uses the standardoffset and limit parameters.
Searching via the API
The search endpoint is available atGET /search.json (or .xml) with the same query parameters:
Permissions
Search results are filtered by your project membership and permissions. You only see resources you are allowed to view:- Issues respect the
view_issuespermission and the issue’sis_privateflag. - Wiki pages require
view_wiki_pages. - News requires
view_news. - Forum messages require
view_messages. - Documents require
view_documents. - Changesets require
view_changesets.
