top of page
Search
  • aslifechanweelo

Driver Netbeans Mysql: Troubleshooting Common Errors and Issues



In the Path to stop command field, type or browse to the location of the MySQL stop command. This is usually the path to mysqladmin in the bin folder of the MySQL installation directory. If the command is mysqladmin, in the Arguments field, type -u root stop to grant root permissions for stopping the server.




Driver Netbeans Mysql



MySQL Connector/J is the official JDBC driver for MySQL. MySQL Connector/J 8.0 is compatible with all MySQL versions starting with MySQL 5.6. Additionally, MySQL Connector/J 8.0 supports the new X DevAPI for development with MySQL Server 8.0.


i did project in netbeans 7.3.1 version and converted as jar if i run the jar from the dist folder means its work properly. if i copy and paste in desktop and run means it shows java.lang.classnotfoundexception:com.mysql.jdbc driver message will show. i could not find exactly. why it shows like that and what is the solution for it. please help me. am new to this netbeans... but added the mysql connector jar file in project. but it shows that error. please help me here is my code


If you are using MySQL 8.0, then use this driver name: "com.mysql.cj.jdbc.Driver".First of all download the libraries from the MySQL website then include them into your project. It will work smoothly.


I can perform the connection in worbanch, but with the same username and password can not connect through the application in the mysql database. I checked the syntax apparently seems to be correct. I would like to help to solve this problem as the .jar is already in the library folder of Java SE project.


Select MySQL(Connector/J Driver) from the drop down list. The driver file should be listed in the window. If not, you can download the file, then click add and select it from your hard drive.


MySQL provides standards-based drivers for JDBC, ODBC, and .Net enabling developers to build database applications in their language of choice. In addition, a native C library allows developers to embed MySQL directly into their applications.


What are JDBC Drivers What is the JDBC URL Download the MySql JDBC Driver How to Connect using the DbSchema MySql Client What are JDBC Drivers? JDBC drivers are Java library files with the extension '.jar', used by Java applications to connect to the database. Usually they are provided by the same company which developed the database software. DbSchema is an MySql Client which already includes the MySql JDBC driver. DbSchema can configure the MySql JDBC URL and test the connectivity.


The URL is a string (text) with a specific format containing information about the host where the database is running, the port, username, database name, etc. The URL format is specific to each driver. Any wrong character in the URL may make the database connectivity fail. Therefore we recommend installing DbSchema and try to get connected, and you will find the JDBC URL in the connection dialog.


  • At this point, DbSchema already downloads the JDBC driver into this folders: C:\Users\YourUser\.DbSchema\drivers\MySql (Windows) or

  • /Users/YourUser/.DbSchema/drivers/MySql (Linux and MacOS).


In the Connection Dialog, select the driver and the JDBC URL template. For databases using multiple possibilities to connect, may exists multiple templates. Choose if the database is running on the current machine or a different port. If is running on a different machine (remote), you need to find the host name. Hover the Host info label using the mouse to get instructions.


Go to the MySql Connector/J download site at and download the latest version. I recommend downloading the Platform Independent version. If your OS is Windows download the ZIP archive otherwise download the TAR archive. You are looking for the driver file named mysql-connector-java-5.1.34-bin.jar in the archive.


Copy the driver file to the lib folder in the directory where you placed your domain. On my system the folder is located at C:\Users\Ken\personal_domain\lib. If GlassFish is already running then you will have to restart it so that it picks up the new library.


NetBeans determines the driver to copy to GlassFish from the file glassfish-resources.xml thatwe will create in Step 4 of this tutorial. Without this file and if you have not copied the driver into GlassFish manually then GlassFish will not be able to connect to the database. Any code in your web application will not work and all you will likely see are blank pages.


I recommend Step 1a and manually add the driver. The reason I prefer this approach is that I can be certain that the most recent driver is in use. As of this writing NetBeans contains version 5.1.23of the connector but the current version is 5.1.34.


If you copy a driver into the lib folder then NetBeans will not replace it with an older driver even if the check box on the Server dialog is checked. NetBeans does not replace a driver if one is already in place.


In the next dialog you must choose the database driver you wish to use. It defaults to Java DB (Embedded). Pull down the combobox labeled Driver: and select MySQL (Connector/J driver).


MariaDB Connector/J is a Type 4 JDBC driver. It was developed specifically asa lightweight JDBC connector for use with MariaDB and MySQL database servers.It was originally based on the Drizzle JDBC code with numerous additions andbug fixes.


The preferred way to get a connection with MariaDB Connector/J is to use the DriverManager class.When the DriverManager class is used to locate and load MariaDB Connector/J, the application needs no further configuration. The DriverManager class will automatically load MariaDB Connector/J and allow it to be used in the same way as any other JDBC driver.


MariaDB Connector/J 3.0 only accepts jdbc:mariadb: as the protocol in connection strings by default. When both MariaDB Connector/J and the MySQL drivers are found in the class-path, using jdbc:mariadb: as the protocol helps to ensure that Java chooses MariaDB Connector/J.


driver 3.0 is a complete rewrite of the connector. Specific support for aurora has not been implemented in 3.0, since it relies on pipelining. Aurora is not compatible with pipelining.Issues for Aurora were piling up without the community proposing any PR for them and without access for us to test those modifications. (2.x version has a 5 years support).


The recommended value is setting timezone to 'auto'. Connector will then time_zone connection variable to `timezone` value at connection creation. This permits safe use of server time function.If client use IANA timezone, server might have to load time zones information see mysql_tzinfo_to_sql and time-zones, and those are not filled by default.


The driver uses server prepared statements as a standard to communicate with the database (since 1.3.0). If the "allowMultiQueries" options are set to true, the driver will only use text protocol. Prepared statements (parameter substitution) is handled by the driver, on the client side.


Connection.isValid() is a good approach. Connection.isValid() is doing a ping (ping in mysql protocol, not network ping). Connection pool using JDBC4 Validation are using automatically this Connection.isValid()


"@context": " ", "@type": "HowTo", "name": "How to Resolve ClassNotFoundException in Java", "description": "The java.lang.ClassNotFoundException is a checked exception in Java that occurs when the JVM tries to load a particular class but does not find it in the classpath.", "image": " -content/uploads/2021/07/how-to-resolve-classnotfoundexception-in-java-.png", "step": [ "@type": "HowToStep", "text": "Find out which JAR file contains the problematic Java class. For example, in the case of com.mysql.jdbc.driver, the JAR file that contains it is mysql-connector-java.jar.", "name": "Find the JAR file that contains the problematic Java class" , "@type": "HowToStep", "text": "Check whether this JAR is present in the application classpath. If not, the JAR should be added to the classpath in Java and the application should be recompiled.", "name": "Check if JAR is present in the application classpath" , "@type": "HowToStep", "text": "If that JAR is already present in the classpath, make sure the classpath is not overridden (e.g. by a start-up script). After finding out the exact Java classpath used by the application, the JAR file should be added to it.", "name": "Check if classpath is overridden" ]


Go to environment variable then click on new tab. In variable name write classpath and in variable value paste the path to the mysqlconnector.jar file by appending mysqlconnector.jar;.; as C:\folder\mysql-connector-java-5.0.8-bin.jar;.;


  • Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.10\",\"showInList\":false},\"spaceId\":\"BITBUCKETSERVER049\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.9\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER048\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.8\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER047\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.7\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER046\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.6\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER045\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.5\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER044\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.4\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER043\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.3\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER042\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.2\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER041\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.1\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVER040\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"4.0\",\"showInList\":false,\"spaceId\":\"STASH0311\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"3.11\",\"showInList\":false,\"spaceId\":\"STASH0310\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"3.10\",\"showInList\":false,\"spaceId\":\"STASH039\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"3.9\",\"showInList\":false,\"spaceId\":\"STASH038\",\"banner\":\"Bitbucket Server was previously known as Atlassian Stash. Learn more.\",\"number\":\"3.8\",\"showInList\":false,\"spaceId\":\"BITBUCKETSERVERKB\",\"banner\":\"\",\"number\":\"KB\",\"showInList\":true,\"spaceId\":\"BBKB\",\"banner\":\"\",\"number\":\"Cloud KB\",\"showInList\":true]},\"productName\":\"Advanced Roadmaps for Jira\",\"cloudSpace\":\"AdvancedRoadmapsCloud\",\"cloudBanner\":\"Portfolio for Jira is now Advanced Roadmaps. Learn more\",\"kbCloudSpace\":\"PORTFOLIOKB\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"PORTFOLIOKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/advanced-roadmaps-for-jira-server\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/advanced-roadmaps-for-jira-cloud\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/jira-advanced-roadmaps\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/Advanced-Roadmaps\/ct-p\/portfolio-for-jira\",\"searchScope\":\"jiraportfolioallversions\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"JIRAPORTFOLIOSERVER\",\"banner\":\"Advanced Roadmaps is now part of Jira Software Data Center\\u2028 See our FAQ to find out how this affects your site\\u2028\\u2028\\u2028These docs are for Advanced Roadmaps version 3.29 and older.If you\u2019re using Jira 8.15 or higher, see Advanced Roadmaps in the Jira documentation\",\"number\":\"3.29\",\"showInList\":true,\"spaceId\":\"ADVANCEDROADMAPSSERVER0328\",\"banner\":\"\",\"number\":\"3.28\",\"showInList\":true,\"spaceId\":\"ADVANCEDROADMAPSSERVER0327\",\"banner\":\"\",\"number\":\"3.27\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0326\",\"banner\":\"\",\"number\":\"3.26\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0325\",\"banner\":\"\",\"number\":\"3.25\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0324\",\"banner\":\"\",\"number\":\"3.24\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0323\",\"banner\":\"\",\"number\":\"3.23\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0322\",\"banner\":\"\",\"number\":\"3.22\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0321\",\"banner\":\"\",\"number\":\"3.21\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0320\",\"banner\":\"\",\"number\":\"3.20\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0319\",\"banner\":\"\",\"number\":\"3.19\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0318\",\"banner\":\"\",\"number\":\"3.18\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0317\",\"banner\":\"\",\"number\":\"3.17\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0316\",\"banner\":\"\",\"number\":\"3.16\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0315\",\"banner\":\"\",\"number\":\"3.15\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0314\",\"banner\":\"\",\"number\":\"3.14\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0313\",\"banner\":\"\",\"number\":\"3.13\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0312\",\"banner\":\"\",\"number\":\"3.12\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0311\",\"banner\":\"\",\"number\":\"3.11\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0310\",\"banner\":\"\",\"number\":\"3.10\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER039\",\"banner\":\"\",\"number\":\"3.9\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER038\",\"banner\":\"\",\"number\":\"3.8\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER037\",\"banner\":\"\",\"number\":\"3.7\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER036\",\"banner\":\"\",\"number\":\"3.6\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER035\",\"banner\":\"\",\"number\":\"3.5\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER034\",\"banner\":\"\",\"number\":\"3.4\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER033\",\"banner\":\"\",\"number\":\"3.3\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER032\",\"banner\":\"\",\"number\":\"3.2\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER031\",\"banner\":\"\",\"number\":\"3.1\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER030\",\"banner\":\"\",\"number\":\"3.0\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0227\",\"banner\":\"\",\"number\":\"2.27\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0226\",\"banner\":\"\",\"number\":\"2.26\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0225\",\"banner\":\"\",\"number\":\"2.25\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0224\",\"banner\":\"\",\"number\":\"2.24\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0223\",\"banner\":\"\",\"number\":\"2.23\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0222\",\"banner\":\"\",\"number\":\"2.22\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0221\",\"banner\":\"\",\"number\":\"2.21\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0220\",\"banner\":\"\",\"number\":\"2.20\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0219\",\"banner\":\"\",\"number\":\"2.19\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0218\",\"banner\":\"\",\"number\":\"2.18\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0217\",\"banner\":\"\",\"number\":\"2.17\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0216\",\"banner\":\"\",\"number\":\"2.16\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0215\",\"banner\":\"\",\"number\":\"2.15\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0214\",\"banner\":\"\",\"number\":\"2.14\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0213\",\"banner\":\"\",\"number\":\"2.13\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0212\",\"banner\":\"\",\"number\":\"2.12\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0211\",\"banner\":\"\",\"number\":\"2.11\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER0210\",\"banner\":\"\",\"number\":\"2.10\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER029\",\"banner\":\"\",\"number\":\"2.9\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER028\",\"banner\":\"\",\"number\":\"2.8\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER027\",\"banner\":\"\",\"number\":\"2.7\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER026\",\"banner\":\"\",\"number\":\"2.6\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER025\",\"banner\":\"\",\"number\":\"2.5\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER024\",\"banner\":\"\",\"number\":\"2.4\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER023\",\"banner\":\"\",\"number\":\"2.3\",\"showInList\":true,\"spaceId\":\"JIRAPORTFOLIOSERVER022\",\"banner\":\"\",\"number\":\"2.2\",\"showInList\":true,\"spaceId\":\"PORTFOLIOKB\",\"banner\":\"\",\"number\":\"KB\",\"showInList\":true], Atlassian documentation\",\"serverVersions\":[\"spaceId\":\"QUESTIONS\",\"banner\":\"\",\"number\":\"3.0\",\"showInList\":true,\"spaceId\":\"CQKB\",\"banner\":\"\",\"number\":\"KB\",\"showInList\":true],\"productName\":\"Bamboo\",\"cloudSpace\":\"\",\"cloudBanner\":\"Atlassian strives to provide high quality and evolving products to our customers. With this in mind, we\'ve made the decision to discontinue our Bamboo Cloud offering on 31 January 2017. Learn more\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"BAMKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/bamboo\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/bamboo\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\/search?hosting=server&product=bamboo\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\/search?hosting=cloud&product=bamboo\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/bamboo\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/Bamboo\/ct-p\/bamboo\",\"searchScope\":\"bambooallversions\",\"titleSuffix\":\",\"productName\":\"Fisheye\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"FISHKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/fisheye\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/fisheye\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\/search?hosting=server&product=fisheye-crucible\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/fisheye\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/FishEye-Crucible\/ct-p\/fisheye-crucible\",\"searchScope\":\"fisheyeallversions\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"FISHEYE\",\"banner\":\"\",\"number\":\"4.8\",\"showInList\":true,\"spaceId\":\"FISHEYE047\",\"banner\":\"\",\"number\":\"4.7\",\"showInList\":true,\"spaceId\":\"FISHEYE046\",\"banner\":\"\",\"number\":\"4.6\",\"showInList\":true,\"spaceId\":\"FISHEYE045\",\"banner\":\"\",\"number\":\"4.5\",\"showInList\":true,\"spaceId\":\"FISHEYE044\",\"banner\":\"\",\"number\":\"4.4\",\"showInList\":true,\"spaceId\":\"FISHEYE043\",\"banner\":\"\",\"number\":\"4.3\",\"showInList\":true,\"spaceId\":\"FISHEYE042\",\"banner\":\"\",\"number\":\"4.2\",\"showInList\":true,\"spaceId\":\"FISHEYE041\",\"banner\":\"\",\"number\":\"4.1\",\"showInList\":true,\"spaceId\":\"FISHEYE040\",\"banner\":\"\",\"number\":\"4.0\",\"showInList\":true,\"spaceId\":\"FISHEYE0310\",\"banner\":\"\",\"number\":\"3.10\",\"showInList\":false,\"spaceId\":\"FISHEYE039\",\"banner\":\"\",\"number\":\"3.9\",\"showInList\":false,\"spaceId\":\"FISHEYE038\",\"banner\":\"\",\"number\":\"3.8\",\"showInList\":false,\"spaceId\":\"FISHEYE037\",\"banner\":\"\",\"number\":\"3.7\",\"showInList\":false,\"spaceId\":\"FISHEYE036\",\"banner\":\"\",\"number\":\"3.6\",\"showInList\":false,\"spaceId\":\"FISHEYE035\",\"banner\":\"\",\"number\":\"3.5\",\"showInList\":false,\"spaceId\":\"FISHEYE034\",\"banner\":\"\",\"number\":\"3.4\",\"showInList\":false,\"spaceId\":\"FISHEYE033\",\"banner\":\"\",\"number\":\"3.3\",\"showInList\":false,\"spaceId\":\"FISHEYE032\",\"banner\":\"\",\"number\":\"3.2\",\"showInList\":false,\"spaceId\":\"FISHEYE031\",\"banner\":\"\",\"number\":\"3.1\",\"showInList\":false,\"spaceId\":\"FISHEYE030\",\"banner\":\"\",\"number\":\"3.0\",\"showInList\":false,\"spaceId\":\"FISHEYE0210\",\"banner\":\"\",\"number\":\"2.10\",\"showInList\":false,\"spaceId\":\"FISHKB\",\"banner\":\"\",\"number\":\"KB\",\"showInList\":true],\"productName\":\"Crucible\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"FISHKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/crucible\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/crucible\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\/search?hosting=server&product=fisheye-crucible\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/crucible\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/FishEye-Crucible\/ct-p\/fisheye-crucible\",\"searchScope\":\"crucibleallversions\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"CRUCIBLE\",\"banner\":\"\",\"number\":\"4.8\",\"showInList\":true,\"spaceId\":\"CRUCIBLE047\",\"banner\":\"\",\"number\":\"4.7\",\"showInList\":true,\"spaceId\":\"CRUCIBLE046\",\"banner\":\"\",\"number\":\"4.6\",\"showInList\":true,\"spaceId\":\"CRUCIBLE045\",\"banner\":\"\",\"number\":\"4.5\",\"showInList\":true,\"spaceId\":\"CRUCIBLE044\",\"banner\":\"\",\"number\":\"4.4\",\"showInList\":true,\"spaceId\":\"CRUCIBLE043\",\"banner\":\"\",\"number\":\"4.3\",\"showInList\":true,\"spaceId\":\"CRUCIBLE042\",\"banner\":\"\",\"number\":\"4.2\",\"showInList\":true,\"spaceId\":\"CRUCIBLE041\",\"banner\":\"\",\"number\":\"4.1\",\"showInList\":true,\"spaceId\":\"CRUCIBLE040\",\"banner\":\"\",\"number\":\"4.0\",\"showInList\":false,\"spaceId\":\"CRUCIBLE0310\",\"banner\":\"\",\"number\":\"3.10\",\"showInList\":false,\"spaceId\":\"CRUCIBLE039\",\"banner\":\"\",\"number\":\"3.9\",\"showInList\":false,\"spaceId\":\"CRUCIBLE038\",\"banner\":\"\",\"number\":\"3.8\",\"showInList\":false,\"spaceId\":\"CRUCIBLE037\",\"banner\":\"\",\"number\":\"3.7\",\"showInList\":false,\"spaceId\":\"CRUCIBLE036\",\"banner\":\"\",\"number\":\"3.6\",\"showInList\":false,\"spaceId\":\"CRUCIBLE035\",\"banner\":\"\",\"number\":\"3.5\",\"showInList\":false,\"spaceId\":\"CRUCIBLE034\",\"banner\":\"\",\"number\":\"3.4\",\"showInList\":false,\"spaceId\":\"CRUCIBLE033\",\"banner\":\"\",\"number\":\"3.3\",\"showInList\":false,\"spaceId\":\"CRUCIBLE032\",\"banner\":\"\",\"number\":\"3.2\",\"showInList\":false,\"spaceId\":\"CRUCIBLE031\",\"banner\":\"\",\"number\":\"3.1\",\"showInList\":false,\"spaceId\":\"CRUCIBLE030\",\"banner\":\"\",\"number\":\"3.0\",\"showInList\":false,\"spaceId\":\"CRUCIBLE0210\",\"banner\":\"\",\"number\":\"2.10\",\"showInList\":false],\"productName\":\"Clover\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"CLOVERKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/clover\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/clover\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/clover\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/Clover\/ct-p\/clover\",\"searchScope\":\"cloverallversions\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"CLOVER\",\"banner\":\"Clover is now available as an open source project. Learn more\",\"number\":\"4.1\",\"showInList\":true,\"spaceId\":\"CLOVER040\",\"banner\":\"\",\"number\":\"4.0\",\"showInList\":false,\"spaceId\":\"CLOVER033\",\"banner\":\"\",\"number\":\"3.3\",\"showInList\":false,\"spaceId\":\"CLOVER032\",\"banner\":\"\",\"number\":\"3.2\",\"showInList\":false,\"spaceId\":\"CLOVER031\",\"banner\":\"\",\"number\":\"3.1\",\"showInList\":false,\"spaceId\":\"CLOVERKB\",\"banner\":\"\",\"number\":\"KB\",\"showInList\":true],\"productName\":\"Crowd\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"CROWDKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/crowd\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/crowd\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\/search?hosting=server&product=crowd\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/crowd\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/Crowd\/ct-p\/crowd\",\"searchScope\":\"crowdallversions\",\"titleSuffix\":\",\"productName\":\"Atlassian Cloud\",\"cloudSpace\":\"CLOUD\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"CLOUDKB\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/cloud\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/cloud\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\/search?hosting=cloud\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/cloud\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/tag\/cloud\/tg-p\",\"searchScope\":\"atlassiancloudallversions\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"CLOUD\",\"banner\":\"To receive a weekly digest of these Cloud Release Notes, visit the\\u2028Email and Privacy Preferences page and check the box for Cloud Release Notes.\",\"number\":\"\",\"showInList\":false], Team Calendars ,\"productName\":\"Sourcetree\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"SOURCETREEKB\",\"gsgServerSpace\":\"GSWST\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/sourcetree\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/sourcetree\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/SourceTree\/ct-p\/sourcetree\",\"searchScope\":\"sourcetreeallversions\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Administering Jira applications\",\"cloudSpace\":\"AdminJIRACloud\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"adminjiracloud\",\"titleSuffix\":\",\"productName\":\"Application Links\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"applinksallversions\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"APPLINKS\",\"banner\":\"\",\"number\":\"7.1\",\"showInList\":true,\"spaceId\":\"APPLINKS070\",\"banner\":\"\",\"number\":\"7.0\",\"showInList\":true,\"spaceId\":\"APPLINKS061\",\"banner\":\"\",\"number\":\"6.1\",\"showInList\":true,\"spaceId\":\"APPLINKS060\",\"banner\":\"\",\"number\":\"6.0\",\"showInList\":true,\"spaceId\":\"APPLINKS054\",\"banner\":\"\",\"number\":\"5.4\",\"showInList\":true,\"spaceId\":\"APPLINKS052\",\"banner\":\"\",\"number\":\"5.2\",\"showInList\":true,\"spaceId\":\"APPLINKS051\",\"banner\":\"\",\"number\":\"5.1\",\"showInList\":false,\"spaceId\":\"APPLINKS050\",\"banner\":\"\",\"number\":\"5.0\",\"showInList\":false,\"spaceId\":\"APPLINKS043\",\"banner\":\"\",\"number\":\"4.3\",\"showInList\":false,\"spaceId\":\"APPLINKS040\",\"banner\":\"\",\"number\":\"4.0\",\"showInList\":false],\"productName\":\"Evaluator Resources\",\"cloudSpace\":\"CONFEVAL\",\"cloudBanner\":\"We ended sales for new server licenses and will end support for server on February 15, 2024. We\u2019re continuing our investment in Data Center. Learn what this means for you\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"evaluatorsallversions\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Stride (EOL)\",\"cloudSpace\":\"STRIDE\",\"cloudBanner\":\"Step on over to Stride.com to learn more.\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"GSWSTR\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"GSWSTR\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\/stride\/\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/stride\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"https:\/\/jira.atlassian.com\/secure\/Dashboard.jspa\",\"feedbackCloudUrl\":\"https:\/\/jira.atlassian.com\/projects\/STRIDE\/issues\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\/stride\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/Stride\/ct-p\/stride\",\"searchScope\":\"stride\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"GDPR\",\"cloudSpace\":\"GDPR\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Enterprise\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Ultimate Permission Manager\",\"cloudSpace\":\"\",\"cloudBanner\":\"Atlassian has acquired the Ultimate Permissions Manager app.\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"ULTPM\",\"banner\":\"Atlassian has acquired the Ultimate Permission Manager app. See the Atlassian blog post and META-INF blog post for more details.\",\"number\":\"2.6\",\"showInList\":true],\"productName\":\"Statuspage\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/statuspage\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\/t5\/Statuspage\/ct-p\/statuspage\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Automation for Jira\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"AUTOMATIONKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[\"spaceId\":\"AUTOMATION\",\"banner\":\"\",\"number\":\"8.1\",\"showInList\":true,\"spaceId\":\"AUTOMATION0800\",\"banner\":\"\",\"number\":\"8.0\",\"showInList\":true,\"spaceId\":\"AUTOMATION074\",\"banner\":\"\",\"number\":\"7.4\",\"showInList\":true,\"spaceId\":\"AUTOMATION073\",\"banner\":\"\",\"number\":\"7.3\",\"showInList\":true,\"spaceId\":\"AUTOMATION072\",\"banner\":\"\",\"number\":\"7.2\",\"showInList\":true,\"spaceId\":\"AUTOMATION071\",\"banner\":\"\",\"number\":\"7.1\",\"showInList\":true,\"spaceId\":\"AUTOMATION070\",\"banner\":\"\",\"number\":\"7.0\",\"showInList\":true],\"productName\":\"Opsgenie\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Trello\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/trello\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Jira Product Discovery (beta)\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\/jira-product-discovery\/\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[],\"productName\":\"Fisheye and Crucible\",\"cloudSpace\":\"\",\"cloudBanner\":\"\",\"kbCloudSpace\":\"\",\"gsgCloudSpace\":\"\",\"kbServerSpace\":\"FISHKB\",\"gsgServerSpace\":\"\",\"supportServerUrl\":\"https:\/\/support.atlassian.com\",\"supportCloudUrl\":\"https:\/\/support.atlassian.com\",\"marketplaceServerUrl\":\"https:\/\/marketplace.atlassian.com\",\"marketplaceCloudUrl\":\"https:\/\/marketplace.atlassian.com\",\"feedbackServerUrl\":\"\",\"feedbackCloudUrl\":\"\",\"licensingUrl\":\"https:\/\/www.atlassian.com\/licensing\",\"communityUrl\":\"https:\/\/community.atlassian.com\",\"searchScope\":\"\",\"titleSuffix\":\"\",\"serverVersions\":[]]"); window.cacChildrenMetadata = JSON.parse("[]"); window.cacAuntsUnclesMetadata = JSON.parse("[\"title\":\"Troubleshooting Crucible Reviews\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Crucible+Reviews\",\"confluence_id\":218274634,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Crucible+Reviews\",\"title\":\"Troubleshooting Databases\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Databases\",\"confluence_id\":218273336,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Databases\",\"title\":\"Troubleshooting Installation\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Installation\",\"confluence_id\":218269773,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Installation\",\"title\":\"Troubleshooting integration with Atlassian applications\",\"url\":\"\/display\/FISHKB\/Troubleshooting+integration+with+Atlassian+applications\",\"confluence_id\":218269747,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+integration+with+Atlassian+applications\",\"title\":\"Troubleshooting Integration With Third Party Applications\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Integration+With+Third+Party+Applications\",\"confluence_id\":218270961,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Integration+With+Third+Party+Applications\",\"title\":\"Troubleshooting JIRA Fisheye Plugin\",\"url\":\"\/display\/FISHKB\/Troubleshooting+JIRA+Fisheye+Plugin\",\"confluence_id\":218269779,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+JIRA+Fisheye+Plugin\",\"title\":\"Troubleshooting Licensing\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Licensing\",\"confluence_id\":218276199,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Licensing\",\"title\":\"Troubleshooting Managed Repositories\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Managed+Repositories\",\"confluence_id\":258441285,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Managed+Repositories\",\"title\":\"Troubleshooting Performance\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Performance\",\"confluence_id\":218269761,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Performance\",\"title\":\"Troubleshooting SCM Integration\",\"url\":\"\/display\/FISHKB\/Troubleshooting+SCM+Integration\",\"confluence_id\":218270940,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+SCM+Integration\",\"title\":\"Troubleshooting Upgrades\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Upgrades\",\"confluence_id\":218269745,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Upgrades\",\"title\":\"Troubleshooting User Management\",\"url\":\"\/display\/FISHKB\/Troubleshooting+User+Management\",\"confluence_id\":218269768,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+User+Management\",\"title\":\"Miscellaneous\",\"url\":\"\/display\/FISHKB\/Miscellaneous\",\"confluence_id\":218271460,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Miscellaneous\",\"title\":\"Fisheye and Crucible Known Issues\",\"url\":\"\/display\/FISHKB\/Fisheye+and+Crucible+Known+Issues\",\"confluence_id\":280068502,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+and+Crucible+Known+Issues\",\"title\":\"Fisheye & Crucible Features and Best Practices\",\"url\":\"\/pages\/viewpage.action?pageId=338365552\",\"confluence_id\":338365552,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=338365552\",\"title\":\"\'How Do I...\' and \'How to...\' Guide to Fisheye\/Crucible\",\"url\":\"\/pages\/viewpage.action?pageId=381813439\",\"confluence_id\":381813439,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=381813439\",\"title\":\"Fisheye\/Crucible svn: E175002: SSL peer shut down incorrectly\",\"url\":\"\/pages\/viewpage.action?pageId=838560862\",\"confluence_id\":838560862,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=838560862\",\"title\":\"Crowd will only synchronise initially\",\"url\":\"\/display\/FISHKB\/Crowd+will+only+synchronise+initially\",\"confluence_id\":873916420,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Crowd+will+only+synchronise+initially\",\"title\":\"Migrating between two external LDAP domains with different username formats\",\"url\":\"\/display\/FISHKB\/Migrating+between+two+external+LDAP+domains+with+different+username+formats\",\"confluence_id\":947847625,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Migrating+between+two+external+LDAP+domains+with+different+username+formats\",\"title\":\"How to query for inactive\/ idle users in Fisheye\/ Crucible and remove them\",\"url\":\"\/pages\/viewpage.action?pageId=949244076\",\"confluence_id\":949244076,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=949244076\",\"title\":\"Migrate MySQL database to UTF8MB4 character encoding\",\"url\":\"\/display\/FISHKB\/Migrate+MySQL+database+to+UTF8MB4+character+encoding\",\"confluence_id\":962356253,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Migrate+MySQL+database+to+UTF8MB4+character+encoding\",\"title\":\"Plugins are disabled at startup causing an empty UI\",\"url\":\"\/display\/FISHKB\/Plugins+are+disabled+at+startup+causing+an+empty+UI\",\"confluence_id\":962958515,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Plugins+are+disabled+at+startup+causing+an+empty+UI\",\"title\":\"\\\"Permission denied Fisheye and Crucible could not complete this action due to a missing form token. You may have cleared your browser cookies, which could have resulted in the expiry of your current form token.\\\"\",\"url\":\"\/pages\/viewpage.action?pageId=966664643\",\"confluence_id\":966664643,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=966664643\",\"title\":\"Fisheye and Crucible Process Dies Unexpectedly Due to Linux OOM-Killer\",\"url\":\"\/display\/FISHKB\/Fisheye+and+Crucible+Process+Dies+Unexpectedly+Due+to+Linux+OOM-Killer\",\"confluence_id\":972329938,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+and+Crucible+Process+Dies+Unexpectedly+Due+to+Linux+OOM-Killer\",\"title\":\"java.lang.RuntimeException: Cell: merge of Cells of different dataLens cellNum\",\"url\":\"\/display\/FISHKB\/java.lang.RuntimeException%3A+Cell%3A+merge+of+Cells+of+different+dataLens+cellNum\",\"confluence_id\":972345756,\"front_facing_confluence_title\":\"\/display\/FISHKB\/java.lang.RuntimeException%3A+Cell%3A+merge+of+Cells+of+different+dataLens+cellNum\",\"title\":\"How to customize the Page Not Found (404) page\",\"url\":\"\/display\/FISHKB\/How+to+customize+the+Page+Not+Found+%28404%29+page\",\"confluence_id\":998639927,\"front_facing_confluence_title\":\"\/display\/FISHKB\/How+to+customize+the+Page+Not+Found+%28404%29+page\",\"title\":\"Manually upgrading the PostgreSQL version of your Amazon RDS database from 9.4 (and below) to 9.6\",\"url\":\"\/display\/FISHKB\/Manually+upgrading+the+PostgreSQL+version+of+your+Amazon+RDS+database+from+9.4+%28and+below%29+to+9.6\",\"confluence_id\":1001823290,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Manually+upgrading+the+PostgreSQL+version+of+your+Amazon+RDS+database+from+9.4+%28and+below%29+to+9.6\",\"title\":\"Migration from Oracle to Postgres fails with\u2014Protocol violation: [ 14, 116, ]\",\"url\":\"\/pages\/viewpage.action?pageId=1021230045\",\"confluence_id\":1021230045,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1021230045\",\"title\":\"How to create a service for Fisheye\/Crucible in Linux\",\"url\":\"\/pages\/viewpage.action?pageId=1041080637\",\"confluence_id\":1041080637,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1041080637\",\"title\":\"Manually upgrading the PostgreSQL version of your Amazon RDS database from 9.5 (and below) to 9.6\",\"url\":\"\/display\/FISHKB\/Manually+upgrading+the+PostgreSQL+version+of+your+Amazon+RDS+database+from+9.5+%28and+below%29+to+9.6\",\"confluence_id\":1044799112,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Manually+upgrading+the+PostgreSQL+version+of+your+Amazon+RDS+database+from+9.5+%28and+below%29+to+9.6\",\"title\":\"All users are unable to log in with Crucible reporting incorrect username and password despite using the correct credentials\",\"url\":\"\/display\/FISHKB\/All+users+are+unable+to+log+in+with+Crucible+reporting+incorrect+username+and+password+despite+using+the+correct+credentials\",\"confluence_id\":1064086288,\"front_facing_confluence_title\":\"\/display\/FISHKB\/All+users+are+unable+to+log+in+with+Crucible+reporting+incorrect+username+and+password+despite+using+the+correct+credentials\",\"title\":\"Fisheye\/Crucible upgrade to versions > 4.8 fails with unique constraint violation on uk_source_rev_path_hash\",\"url\":\"\/pages\/viewpage.action?pageId=1072466063\",\"confluence_id\":1072466063,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1072466063\",\"title\":\"Fisheye repository indexing paused due to svn: E175002: Connection reset\",\"url\":\"\/display\/FISHKB\/Fisheye+repository+indexing+paused+due+to+svn%3A+E175002%3A+Connection+reset\",\"confluence_id\":1081350427,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+repository+indexing+paused+due+to+svn%3A+E175002%3A+Connection+reset\",\"title\":\"Fisheye\/Crucible: Mercurial repository indexing paused with \\\"no match found!\\\" exception\",\"url\":\"\/pages\/viewpage.action?pageId=1087517770\",\"confluence_id\":1087517770,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1087517770\",\"title\":\"Manually upgrading the PostgreSQL version of your Amazon RDS database from 9.6 to 10\",\"url\":\"\/display\/FISHKB\/Manually+upgrading+the+PostgreSQL+version+of+your+Amazon+RDS+database+from+9.6+to+10\",\"confluence_id\":1097172216,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Manually+upgrading+the+PostgreSQL+version+of+your+Amazon+RDS+database+from+9.6+to+10\",\"title\":\"Avatars do not load properly in Fisheye\/Crucible\",\"url\":\"\/pages\/viewpage.action?pageId=1055691313\",\"confluence_id\":1055691313,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1055691313\",\"title\":\"Accessing Fisheye\/Crucible over SSL results in \\\"ERR_SSL_VERSION_OR_CIPHER_MISMATCH\\\"\",\"url\":\"\/pages\/viewpage.action?pageId=1044775805\",\"confluence_id\":1044775805,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1044775805\",\"title\":\"SVN indexing stuck in a loop due to the pipeline batch path limit being reached\",\"url\":\"\/display\/FISHKB\/SVN+indexing+stuck+in+a+loop+due+to+the+pipeline+batch+path+limit+being+reached\",\"confluence_id\":1051984985,\"front_facing_confluence_title\":\"\/display\/FISHKB\/SVN+indexing+stuck+in+a+loop+due+to+the+pipeline+batch+path+limit+being+reached\",\"title\":\"Editing JVM parameters in Fisheye\/Crucible on Windows with no option to add Java variables to the service\",\"url\":\"\/pages\/viewpage.action?pageId=1064084282\",\"confluence_id\":1064084282,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=1064084282\",\"title\":\"Fisheye antivirus exclusions\",\"url\":\"\/display\/FISHKB\/Fisheye+antivirus+exclusions\",\"confluence_id\":1188775155,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+antivirus+exclusions\",\"title\":\"Git repository on Fisheye shows changed 0 files after indexing is completed\",\"url\":\"\/display\/FISHKB\/Git+repository+on+Fisheye+shows+changed+0+files+after+indexing+is+completed\",\"confluence_id\":1188413998,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Git+repository+on+Fisheye+shows+changed+0+files+after+indexing+is+completed\"]"); window.cacSiblingsMetadata = JSON.parse("[\"title\":\"Database migration fails due to duplicate entry\",\"url\":\"\/display\/FISHKB\/Database+migration+fails+due+to+duplicate+entry\",\"confluence_id\":204050111,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Database+migration+fails+due+to+duplicate+entry\",\"title\":\"Connection timeout with MySQL database\",\"url\":\"\/display\/FISHKB\/Connection+timeout+with+MySQL+database\",\"confluence_id\":276628878,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Connection+timeout+with+MySQL+database\",\"title\":\"java.sql.SQLException: I\/O Error: Connection reset when connecting to an external SQL Server 2008 database\",\"url\":\"\/pages\/viewpage.action?pageId=284365810\",\"confluence_id\":284365810,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=284365810\",\"title\":\"Oracle DB - The database is not using Unicode. Crucible requires that the database uses a UTF8 encoding to support internalization\",\"url\":\"\/display\/FISHKB\/Oracle+DB+-+The+database+is+not+using+Unicode.+Crucible+requires+that+the+database+uses+a+UTF8+encoding+to+support+internalization\",\"confluence_id\":296096616,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Oracle+DB+-+The+database+is+not+using+Unicode.+Crucible+requires+that+the+database+uses+a+UTF8+encoding+to+support+internalization\",\"title\":\"JDBCExceptionReporter - JDBC ERROR has been closed() -- you can no longer use it\",\"url\":\"\/display\/FISHKB\/JDBCExceptionReporter+-+JDBC+ERROR+has+been+closed%28%29+--+you+can+no+longer+use+it\",\"confluence_id\":296097119,\"front_facing_confluence_title\":\"\/display\/FISHKB\/JDBCExceptionReporter+-+JDBC+ERROR+has+been+closed%28%29+--+you+can+no+longer+use+it\",\"title\":\"Database Migration to MySQL Fails with \'com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException\'\",\"url\":\"\/pages\/viewpage.action?pageId=300812426\",\"confluence_id\":300812426,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=300812426\",\"title\":\"Could not Execute JDBC Batch Update When Inserting a Comment\",\"url\":\"\/display\/FISHKB\/Could+not+Execute+JDBC+Batch+Update+When+Inserting+a+Comment\",\"confluence_id\":302809651,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Could+not+Execute+JDBC+Batch+Update+When+Inserting+a+Comment\",\"title\":\"Fisheye logs thrown \\\"Table \'xxx\' doesn\'t exist\\\" when using MySQL server\",\"url\":\"\/pages\/viewpage.action?pageId=302810019\",\"confluence_id\":302810019,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=302810019\",\"title\":\"MySQL Error 28\",\"url\":\"\/display\/FISHKB\/MySQL+Error+28\",\"confluence_id\":314449863,\"front_facing_confluence_title\":\"\/display\/FISHKB\/MySQL+Error+28\",\"title\":\"MySQL SQL script error - drop foreign key\",\"url\":\"\/display\/FISHKB\/MySQL+SQL+script+error+-+drop+foreign+key\",\"confluence_id\":314449915,\"front_facing_confluence_title\":\"\/display\/FISHKB\/MySQL+SQL+script+error+-+drop+foreign+key\",\"title\":\"Migrating from HSQLDB to any database fails\",\"url\":\"\/display\/FISHKB\/Migrating+from+HSQLDB+to+any+database+fails\",\"confluence_id\":317195386,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Migrating+from+HSQLDB+to+any+database+fails\",\"title\":\"Database connections locked up due to foreign key constraint on table \'cru_frx\'\",\"url\":\"\/pages\/viewpage.action?pageId=320602504\",\"confluence_id\":320602504,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=320602504\",\"title\":\"Unable to create review due to error \'ConstraintViolationException - Could not execute JDBC batch update\'\",\"url\":\"\/pages\/viewpage.action?pageId=321857842\",\"confluence_id\":321857842,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=321857842\",\"title\":\"Can\'t connect to Oracle database - ORA-00955\",\"url\":\"\/display\/FISHKB\/Can%27t+connect+to+Oracle+database+-+ORA-00955\",\"confluence_id\":325320850,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Can%27t+connect+to+Oracle+database+-+ORA-00955\",\"title\":\"Web Hooks Fail with ORA-01031: insufficient privileges Exception\",\"url\":\"\/display\/FISHKB\/Web+Hooks+Fail+with+ORA-01031%3A+insufficient+privileges+Exception\",\"confluence_id\":388399851,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Web+Hooks+Fail+with+ORA-01031%3A+insufficient+privileges+Exception\",\"title\":\"Unable to connect to Oracle database ORA-00942: table or view does not exist\",\"url\":\"\/display\/FISHKB\/Unable+to+connect+to+Oracle+database+ORA-00942%3A+table+or+view+does+not+exist\",\"confluence_id\":391086213,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Unable+to+connect+to+Oracle+database+ORA-00942%3A+table+or+view+does+not+exist\",\"title\":\"MySQL Incorrect information in file .frm\",\"url\":\"\/display\/FISHKB\/MySQL+Incorrect+information+in+file+.frm\",\"confluence_id\":391086352,\"front_facing_confluence_title\":\"\/display\/FISHKB\/MySQL+Incorrect+information+in+file+.frm\",\"title\":\"Database migration fails - Unsupported major.minor version\",\"url\":\"\/display\/FISHKB\/Database+migration+fails+-+Unsupported+major.minor+version\",\"confluence_id\":409535120,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Database+migration+fails+-+Unsupported+major.minor+version\",\"title\":\"Oracle database migration fails with ORA-01450 maximum key length (3118) exceeded\",\"url\":\"\/display\/FISHKB\/Oracle+database+migration+fails+with+ORA-01450+maximum+key+length+%283118%29+exceeded\",\"confluence_id\":656409141,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Oracle+database+migration+fails+with+ORA-01450+maximum+key+length+%283118%29+exceeded\",\"title\":\"Unable to connect to Oracle database when starting\",\"url\":\"\/display\/FISHKB\/Unable+to+connect+to+Oracle+database+when+starting\",\"confluence_id\":665420377,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Unable+to+connect+to+Oracle+database+when+starting\",\"title\":\"org.springframework.beans.BeanInstantiationException when trying to start Fisheye\",\"url\":\"\/display\/FISHKB\/org.springframework.beans.BeanInstantiationException+when+trying+to+start+Fisheye\",\"confluence_id\":668926643,\"front_facing_confluence_title\":\"\/display\/FISHKB\/org.springframework.beans.BeanInstantiationException+when+trying+to+start+Fisheye\",\"title\":\"Constraint violation in MSSQL when creating review\",\"url\":\"\/display\/FISHKB\/Constraint+violation+in+MSSQL+when+creating+review\",\"confluence_id\":692782408,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Constraint+violation+in+MSSQL+when+creating+review\",\"title\":\"Restoring backup failed due to foreign key constraint\",\"url\":\"\/display\/FISHKB\/Restoring+backup+failed+due+to+foreign+key+constraint\",\"confluence_id\":701432859,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Restoring+backup+failed+due+to+foreign+key+constraint\",\"title\":\"MySQL Backup Restore Fails with \'The total number of locks exceeds the lock table size\' Exception\",\"url\":\"\/display\/FISHKB\/MySQL+Backup+Restore+Fails+with+%27The+total+number+of+locks+exceeds+the+lock+table+size%27+Exception\",\"confluence_id\":761242879,\"front_facing_confluence_title\":\"\/display\/FISHKB\/MySQL+Backup+Restore+Fails+with+%27The+total+number+of+locks+exceeds+the+lock+table+size%27+Exception\",\"title\":\"Reviews cannot be created due to ConstraintViolationException\",\"url\":\"\/display\/FISHKB\/Reviews+cannot+be+created+due+to+ConstraintViolationException\",\"confluence_id\":849150260,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Reviews+cannot+be+created+due+to+ConstraintViolationException\",\"title\":\"Smart Commits page gives error message \\\"Your request was unable to be processed\\\" due to ORA-00942\",\"url\":\"\/pages\/viewpage.action?pageId=881540090\",\"confluence_id\":881540090,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=881540090\",\"title\":\"Fisheye running on MySQL throws \\\"Errcode: 28 - No space left on device\\\"\",\"url\":\"\/pages\/viewpage.action?pageId=900818733\",\"confluence_id\":900818733,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=900818733\",\"title\":\"Convert non-UTF-8 MySQL database to UTF-8\",\"url\":\"\/display\/FISHKB\/Convert+non-UTF-8+MySQL+database+to+UTF-8\",\"confluence_id\":938841338,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Convert+non-UTF-8+MySQL+database+to+UTF-8\",\"title\":\"Application was down because its files had consumed up all server space\",\"url\":\"\/display\/FISHKB\/Application+was+down+because+its+files+had+consumed+up+all+server+space\",\"confluence_id\":298978100,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Application+was+down+because+its+files+had+consumed+up+all+server+space\",\"title\":\"com.cenqua.crucible.hibernate.CruDBException during restore of the backup\",\"url\":\"\/display\/FISHKB\/com.cenqua.crucible.hibernate.CruDBException+during+restore+of+the+backup\",\"confluence_id\":600113805,\"front_facing_confluence_title\":\"\/display\/FISHKB\/com.cenqua.crucible.hibernate.CruDBException+during+restore+of+the+backup\",\"title\":\"Connection to MySQL Database Fails with \'You have an error in your SQL syntax\' Error\",\"url\":\"\/display\/FISHKB\/Connection+to+MySQL+Database+Fails+with+%27You+have+an+error+in+your+SQL+syntax%27+Error\",\"confluence_id\":420971416,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Connection+to+MySQL+Database+Fails+with+%27You+have+an+error+in+your+SQL+syntax%27+Error\",\"title\":\"Crucible reports violation in uk_crurevision_spr unique constraint\",\"url\":\"\/display\/FISHKB\/Crucible+reports+violation+in+uk_crurevision_spr+unique+constraint\",\"confluence_id\":1087526389,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Crucible+reports+violation+in+uk_crurevision_spr+unique+constraint\",\"title\":\"Database Errors when using the Default MySQL Storage Engine\",\"url\":\"\/display\/FISHKB\/Database+Errors+when+using+the+Default+MySQL+Storage+Engine\",\"confluence_id\":221449548,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Database+Errors+when+using+the+Default+MySQL+Storage+Engine\",\"title\":\"Database Migration from HSQLDB to Oracle Fails with \\\"value too large\\\" Error on CRU_INLINE_COMMENT_TO_FRX_REV table\",\"url\":\"\/pages\/viewpage.action?pageId=317195787\",\"confluence_id\":317195787,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=317195787\",\"title\":\"Database migration to Oracle fails\",\"url\":\"\/display\/FISHKB\/Database+migration+to+Oracle+fails\",\"confluence_id\":231342203,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Database+migration+to+Oracle+fails\",\"title\":\"Database migration to Oracle fails due to incorrect database encoding\",\"url\":\"\/display\/FISHKB\/Database+migration+to+Oracle+fails+due+to+incorrect+database+encoding\",\"confluence_id\":298979978,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Database+migration+to+Oracle+fails+due+to+incorrect+database+encoding\",\"title\":\"Database Migration to Oracle Fails with \\\"value too large for column\\\" Error on CRU_REVIEW\",\"url\":\"\/pages\/viewpage.action?pageId=305037449\",\"confluence_id\":305037449,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=305037449\",\"title\":\"Fisheye Fails to Startup with MySQL 5.6.x\",\"url\":\"\/display\/FISHKB\/Fisheye+Fails+to+Startup+with+MySQL+5.6.x\",\"confluence_id\":323392983,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+Fails+to+Startup+with+MySQL+5.6.x\",\"title\":\"Fisheye is losing connection back to the database intermittently\",\"url\":\"\/display\/FISHKB\/Fisheye+is+losing+connection+back+to+the+database+intermittently\",\"confluence_id\":1157179584,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+is+losing+connection+back+to+the+database+intermittently\",\"title\":\"Getting Data too long for column \'cru_revision\' at row 1 error when migrating to external database\",\"url\":\"\/display\/FISHKB\/Getting+Data+too+long+for+column+%27cru_revision%27+at+row+1+error+when+migrating+to+external+database\",\"confluence_id\":298976570,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Getting+Data+too+long+for+column+%27cru_revision%27+at+row+1+error+when+migrating+to+external+database\",\"title\":\"LDAP sync fails with IllegalArgumentException due to wrong MySQL JDBC driver being used\",\"url\":\"\/display\/FISHKB\/LDAP+sync+fails+with+IllegalArgumentException+due+to+wrong+MySQL+JDBC+driver+being+used\",\"confluence_id\":1070073590,\"front_facing_confluence_title\":\"\/display\/FISHKB\/LDAP+sync+fails+with+IllegalArgumentException+due+to+wrong+MySQL+JDBC+driver+being+used\",\"title\":\"Migrating to MySQL fails with migrateDBProgressAjax error message\",\"url\":\"\/display\/FISHKB\/Migrating+to+MySQL+fails+with+migrateDBProgressAjax+error+message\",\"confluence_id\":432803313,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Migrating+to+MySQL+fails+with+migrateDBProgressAjax+error+message\",\"title\":\"MySQL Collation Error When Starting-up Server\",\"url\":\"\/display\/FISHKB\/MySQL+Collation+Error+When+Starting-up+Server\",\"confluence_id\":229179515,\"front_facing_confluence_title\":\"\/display\/FISHKB\/MySQL+Collation+Error+When+Starting-up+Server\",\"title\":\"MySQL Database Migration fails with Specified key was too long max key length is 1000 bytes\",\"url\":\"\/display\/FISHKB\/MySQL+Database+Migration+fails+with+Specified+key+was+too+long+max+key+length+is+1000+bytes\",\"confluence_id\":298978735,\"front_facing_confluence_title\":\"\/display\/FISHKB\/MySQL+Database+Migration+fails+with+Specified+key+was+too+long+max+key+length+is+1000+bytes\",\"title\":\"New Reviews Fail to be Created with \'Can\'t associate project\' Exception\",\"url\":\"\/display\/FISHKB\/New+Reviews+Fail+to+be+Created+with+%27Can%27t+associate+project%27+Exception\",\"confluence_id\":300812382,\"front_facing_confluence_title\":\"\/display\/FISHKB\/New+Reviews+Fail+to+be+Created+with+%27Can%27t+associate+project%27+Exception\",\"title\":\"Packet too large errors when accessing code reviews\",\"url\":\"\/display\/FISHKB\/Packet+too+large+errors+when+accessing+code+reviews\",\"confluence_id\":747440109,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Packet+too+large+errors+when+accessing+code+reviews\",\"title\":\"Smart commits failing after upgrading Fisheye\",\"url\":\"\/display\/FISHKB\/Smart+commits+failing+after+upgrading+Fisheye\",\"confluence_id\":420971432,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Smart+commits+failing+after+upgrading+Fisheye\",\"title\":\"SQLServer DB is using a collation which is not case sensitive\",\"url\":\"\/display\/FISHKB\/SQLServer+DB+is+using+a+collation+which+is+not+case+sensitive\",\"confluence_id\":296912283,\"front_facing_confluence_title\":\"\/display\/FISHKB\/SQLServer+DB+is+using+a+collation+which+is+not+case+sensitive\",\"title\":\"SQL Server migration fails due to wrong Database user permissions\",\"url\":\"\/display\/FISHKB\/SQL+Server+migration+fails+due+to+wrong+Database+user+permissions\",\"confluence_id\":298979739,\"front_facing_confluence_title\":\"\/display\/FISHKB\/SQL+Server+migration+fails+due+to+wrong+Database+user+permissions\",\"title\":\"SQL Server using wrong transaction isolation level\",\"url\":\"\/display\/FISHKB\/SQL+Server+using+wrong+transaction+isolation+level\",\"confluence_id\":387448841,\"front_facing_confluence_title\":\"\/display\/FISHKB\/SQL+Server+using+wrong+transaction+isolation+level\",\"title\":\"The Maximum Pool Connection setting is too small to dedicate sufficient connections to retriable pool.\",\"url\":\"\/pages\/viewpage.action?pageId=690848155\",\"confluence_id\":690848155,\"front_facing_confluence_title\":\"\/pages\/viewpage.action?pageId=690848155\",\"title\":\"Unable to connect to SQLServer 2008 database - Exception attempting to load Database driver\",\"url\":\"\/display\/FISHKB\/Unable+to+connect+to+SQLServer+2008+database+-+Exception+attempting+to+load+Database+driver\",\"confluence_id\":297666995,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Unable+to+connect+to+SQLServer+2008+database+-+Exception+attempting+to+load+Database+driver\"]"); window.cacGrandparentMetadata = JSON.parse("\"title\":\"Fisheye and Crucible Knowledge Base\",\"url\":\"\/display\/FISHKB\/Fisheye+and+Crucible+Knowledge+Base\",\"confluence_id\":179443498,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Fisheye+and+Crucible+Knowledge+Base\""); window.cacParentMetadata = JSON.parse("\"title\":\"Troubleshooting Databases\",\"url\":\"\/display\/FISHKB\/Troubleshooting+Databases\",\"confluence_id\":218273336,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Troubleshooting+Databases\""); window.cacAncestorPageIds = JSON.parse("[179443498,218273336]"); window.cacCurrentMetadata = JSON.parse("\"title\":\"Unable to connect to MySQL database - Exception attempting to load Database driver\",\"url\":\"\/display\/FISHKB\/Unable+to+connect+to+MySQL+database+-+Exception+attempting+to+load+Database+driver\",\"confluence_id\":339739579,\"front_facing_confluence_title\":\"\/display\/FISHKB\/Unable+to+connect+to+MySQL+database+-+Exception+attempting+to+load+Database+driver\""); window.lastCachedTimestamp = 1675970019746; window.cacSpaceKeyMetatag = "metatags-cac-space-key"; var _aaq = window._aaq (window._aaq = []); (function() var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; g.type = 'text/javascript'; g.defer = true; g.async = true; g.src = document.location.protocol + '//cdn.evgnet.com/beacon/atlassian/engage/scripts/evergage.min.js'; s.parentNode.insertBefore(g, s); )(); "@context": " ", "@type": "WebSite", "name": "Atlassian Documentation", "url": " ", "potentialAction": "@type": "SearchAction", "target": " =search_term_string", "query-input": "required name=search_term_string" .sv-bidi-marker:before unicode-bidi: isolate; background-color: #fff0b3; color: #7f5f01; cursor: pointer; content: attr(data-charcode); Products Fisheye Support Documentation Knowledge base Resources Search Log in View account

  • View requests

  • Log out

... Knowledge base Products Jira Software Project and issue tracking 2ff7e9595c


0 views0 comments

Recent Posts

See All

Comments


bottom of page