Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 930780 Details for
Bug 1132740
Jcr2vfs migration fails with ClassNotFoundException: org.apache.pdfbox.io.RandomAccess
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
setting file which I used to reproduce the issue
repository.xml.sample (text/plain), 7.91 KB, created by
Hisao Furuichi
on 2014-08-26 08:08:37 UTC
(
hide
)
Description:
setting file which I used to reproduce the issue
Filename:
MIME Type:
Creator:
Hisao Furuichi
Created:
2014-08-26 08:08:37 UTC
Size:
7.91 KB
patch
obsolete
><?xml version="1.0"?> ><!-- > Licensed to the Apache Software Foundation (ASF) under one or more > contributor license agreements. See the NOTICE file distributed with > this work for additional information regarding copyright ownership. > The ASF licenses this file to You under the Apache License, Version 2.0 > (the "License"); you may not use this file except in compliance with > the License. You may obtain a copy of the License at > > http://www.apache.org/licenses/LICENSE-2.0 > > Unless required by applicable law or agreed to in writing, software > distributed under the License is distributed on an "AS IS" BASIS, > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. > See the License for the specific language governing permissions and > limitations under the License. >--> ><!DOCTYPE Repository PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 1.4//EN" > "http://jackrabbit.apache.org/dtd/repository-1.4.dtd"> ><Repository> > <!-- > virtual file system where the repository stores global state > (e.g. registered namespaces, custom node types, etc.) > --> > <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem"> > <param name="driver" value="com.mysql.jdbc.Driver"/> > <param name="url" value="jdbc:mysql://localhost:3306/brms531" /> > <param name="user" value="root" /> > <param name="password" value="password" /> > <param name="schema" value="mysql"/> > <param name="schemaObjectPrefix" value="FS_"/> > </FileSystem> > > <!-- > security configuration > --> > <Security appName="Jackrabbit"> > <!-- > access manager: > class: FQN of class implementing the AccessManager interface > --> > <AccessManager class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager"> > <!-- > <param name="config" value="${rep.home}/access.xml"/> --> > </AccessManager> > > <LoginModule class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule"> > <!-- anonymous user name ('anonymous' is the default value) --> > <!-- <param name="anonymousId" value="anonymous"/> --> > <!-- > default user name to be used instead of the anonymous user > when no login credentials are provided (unset by default) > --> > <!-- <param name="defaultUserId" value="superuser"/> --> > </LoginModule> > </Security> > > <!-- > location of workspaces root directory and name of default workspace > --> > <Workspaces rootPath="${rep.home}/workspaces" defaultWorkspace="default"/> > <!-- > workspace configuration template: > used to create the initial workspace if there's no workspace yet > --> > <Workspace name="${wsp.name}"> > <!-- > virtual file system of the workspace: > class: FQN of class implementing the FileSystem interface > --> > > > <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem"> > <param name="driver" value="com.mysql.jdbc.Driver"/> > <param name="url" value="jdbc:mysql://localhost:3306/brms531" /> > <param name="user" value="root" /> > <param name="password" value="password" /> > <param name="schema" value="mysql"/> > <param name="schemaObjectPrefix" value="FS_WS_${wsp.name}_"/> > </FileSystem> > > <!-- > persistence manager of the workspace: > class: FQN of class implementing the PersistenceManager interface > > <PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.MySqlPersistenceManager"> > <param name="driver" value="javax.naming.InitialContext"/> > <param name="url" value="java:jboss/datasources/brms"/> > <param name="schema" value="mysql"/> > <param name="schemaObjectPrefix" value="PM_WS_${wsp.name}_" /> > </PersistenceManager> > --> > > <PersistenceManager class="org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager"> > <param name="driver" value="com.mysql.jdbc.Driver"/> > <param name="url" value="jdbc:mysql://localhost:3306/brms531" /> > <param name="user" value="root" /> > <param name="password" value="password" /> > <param name="schema" value="mysql" /> > <param name="schemaObjectPrefix" value="PM_WS_${wsp.name}_" /> > </PersistenceManager> > > <!-- > Search index and the file system it uses. > class: FQN of class implementing the QueryHandler interface > --> > <SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex"> > <param name="path" value="${wsp.home}/index"/> > <param name="textFilterClasses" value="org.apache.jackrabbit.extractor.MsWordTextExtractor,org.apache.jackrabbit.extractor.MsExcelTextExtractor,org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,org.apache.jackrabbit.extractor.PdfTextExtractor,org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,org.apache.jackrabbit.extractor.RTFTextExtractor,org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor"/> > <param name="extractorPoolSize" value="2"/> > <param name="supportHighlighting" value="true"/> > </SearchIndex> > </Workspace> > > <!-- > Configures the versioning > --> > <Versioning rootPath="${rep.home}/version"> > <!-- > Configures the filesystem to use for versioning for the respective > persistence manager > --> > > <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem"> > <param name="driver" value="com.mysql.jdbc.Driver"/> > <param name="url" value="jdbc:mysql://localhost:3306/brms531" /> > <param name="user" value="root" /> > <param name="password" value="password" /> > <param name="schema" value="mysql"/> > <param name="schemaObjectPrefix" value="Versioning_FS_"/> > </FileSystem> > > <!-- > Configures the persistence manager to be used for persisting version state. > Please note that the current versioning implementation is based on > a 'normal' persistence manager, but this could change in future > implementations. > > <PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.MySqlPersistenceManager"> > <param name="driver" value="javax.naming.InitialContext"/> > <param name="url" value="java:jboss/datasources/brms"/> > <param name="schema" value="mysql"/> > <param name="schemaObjectPrefix" value="Versioning_PM_" /> > </PersistenceManager> > --> > > <PersistenceManager class="org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager"> > <param name="driver" value="com.mysql.jdbc.Driver"/> > <param name="url" value="jdbc:mysql://localhost:3306/brms531" /> > <param name="user" value="root" /> > <param name="password" value="password" /> > <param name="schema" value="mysql" /> > <param name="schemaObjectPrefix" value="Versioning_PM_" /> > </PersistenceManager> > > </Versioning> > > <!-- > Search index for content that is shared repository wide > (/jcr:system tree, contains mainly versions) > --> > <SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex"> > <param name="path" value="${rep.home}/repository/index"/> > <param name="textFilterClasses" value="org.apache.jackrabbit.extractor.MsWordTextExtractor,org.apache.jackrabbit.extractor.MsExcelTextExtractor,org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,org.apache.jackrabbit.extractor.PdfTextExtractor,org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,org.apache.jackrabbit.extractor.RTFTextExtractor,org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor"/> > <param name="extractorPoolSize" value="2"/> > <param name="supportHighlighting" value="true"/> > </SearchIndex> ></Repository>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1132740
: 930780