Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 829A5CAC4 for ; Wed, 16 May 2012 18:19:29 +0000 (UTC) Received: (qmail 67178 invoked by uid 500); 16 May 2012 18:19:29 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 67160 invoked by uid 500); 16 May 2012 18:19:29 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 67152 invoked by uid 99); 16 May 2012 18:19:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2012 18:19:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2012 18:19:28 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 028EB85E8 for ; Wed, 16 May 2012 18:19:08 +0000 (UTC) Date: Wed, 16 May 2012 18:19:08 +0000 (UTC) From: "Kathey Marsden (JIRA)" To: derby-dev@db.apache.org Message-ID: <1406400334.5041.1337192348011.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <516318041.4628.1337186942291.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Assigned] (DERBY-5766) BaseDataFileFactory.boot() should log the exception that causes it to boot the database read only MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-5766?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kathey Marsden reassigned DERBY-5766: ------------------------------------- Assignee: Kathey Marsden > BaseDataFileFactory.boot() should log the exception that causes it to boot the database read only > -------------------------------------------------------------------------------------------------- > > Key: DERBY-5766 > URL: https://issues.apache.org/jira/browse/DERBY-5766 > Project: Derby > Issue Type: Bug > Components: Store > Affects Versions: 10.9.0.0 > Reporter: Kathey Marsden > Assignee: Kathey Marsden > > In BaseDataFileFactory.boot() there is code that tries to write to the lock file. If it cannot, and gets an IOException it assumes the database is read only. I think that we should log that the database is booting read only and why and if it is not specifically a permission error log the exception stack trace. > > fileLockOnDB = fileLock.getRandomAccessFile( "rw"); > fileLock.limitAccessToOwner(); > // write it out for future reference > fileLockOnDB.writeUTF(myUUID.toString()); > fileLockOnDB.sync(); > fileLockOnDB.seek(0); > // check the UUID > UUID checkUUID = uuidFactory.recreateUUID(fileLockOnDB.readUTF()); > if (!checkUUID.equals(myUUID)) > { > throw StandardException.newException( > SQLState.DATA_MULTIPLE_JBMS_ON_DB, databaseDirectory); > } > } > catch (IOException ioe) > { > // probably a read only db, don't do anything more > readOnly = true; > try > { > if (fileLockOnDB != null) > fileLockOnDB.close(); > } > catch (IOException ioe2) > { /* did the best I could */ } > fileLockOnDB = null; > return; > } > I think this code can be exercised by creating a database and exiting without shutdown. Then change permission on the db.lck and dbex.lck files. It occurs often in the field when multiple users with incompatible permissions/umasks access the derby database. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira