반응형

atlassian_confluence_jira 83

jira Database: We've found a problem with your database connection URL

jira update 하다가 위와 같이 에러가 발생 한다. mysql 5.6 이전버전과 이후 버전 차이에 문제가 생긴다. 아래와 같이 dbconfig.xml 파일을 수정 해주면 된다. 5.7 은 storage_engine=InnoDB5.6 이하는 default_storage_engine=InnoDBFor versions of MySQL below 5.7jdbc:mysql://dbserver:3306/jiradb?useUnicode=true&characterEncoding=UTF8&sessionVariables=storage_engine=InnoDBFor versions of MySQL of 5.7 and abovejdbc:mysql://dbserver:3306/jiradb?useUnicode=true&c..

MySQL 5.1.71 is not supported. You should migrate to a supported database version.

MySQL 5.1.71 is not supported. You should migrate to a supported database version. jira 사용하다 보면 위와 같이 에러가 발생할수 있다.mysql upgrade 하도록 하자 자신의 버전에 맞춰서 지원 하는 mysql 를 확인후 업데이트 하자.JIRA Server 7.2 Supported platformsJIRA Server 7.3 Supported platforms나는 7.2 버전이니깐 mysql 5.5 or 5.6 지원이다. 5.6 설치 하자. mysql 버전 확인# mysql --versionmysql Ver 14.14 Distrib 5.1.71, for redhat-linux-gnu (x86_64) using readline 5.1..

No operations allowed after connection closed.Connection was implicitly closed by the driver.

No operations allowed after connection closed.Connection was implicitly closed by the driver.Unexpected exception encountered during query. Confluence 6.x 업그레이드시 DB를 재설정을 하면서 업데이트 하기때문에 시간이 오래 걸린다.업그레이드 상황을 보고 싶다면# tail -f /confluence홈폴더/logs/atlassian-confluence.log 오래 걸리고 위와 같이 에러가 발생한다면 bin 폴더에 있는 setenv.sh 파일을 수정해서CATALTNA_OPTS="-Dconfluence.upgrade.recovery.file.enabled=false" 항목을 추가 서비스 재시..

Bitbucket install

Bitbucket 설치 하기 Bitbucket 설치형태가 클라우드 기반과 설치 기반이 있다. 난 설치기반으로 .. centos 6.5 64bit 기반.. 우선 mysql 설정먼저 하자. mysql> CREATE DATABASE bitbucket CHARACTER SET utf8 COLLATE utf8_bin;mysql> GRANT ALL PRIVILEGES ON bitbucket.* TO 'bitbucketuser'@'localhost' IDENTIFIED BY 'password';mysql> FLUSH PRIVILEGES;mysql> QUIT https://ko.atlassian.com/software/bitbucket/download우선 해당경로에서 리눅스 버전을 다운 받아서 설치 하자. # cd /..

The following database configurations are not set as per our recommended settings: 'pool-remove-abandoned, pool-remove-abandoned-timeout, validation-query-timeout, min-evictable-idle-time-millis, time-between-eviction-runs-millis, pool-test-on-borrow, p..

The following database configurations are not set as per our recommended settings: 'pool-remove-abandoned, pool-remove-abandoned-timeout, validation-query-timeout, min-evictable-idle-time-millis, time-between-eviction-runs-millis, pool-test-on-borrow, pool-test-while-idle'. jira 7.x.x 로 업그레이드 되면서 DB에 에러가 발생이 된다. dbconfig.xml 파일을 수정해서 defaultDS default mysql jdbc:mysql://localhost:3306/jiradb7010..

Unable to connect to MySQL database jdbc:mysql://localhost:3306/crucible: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver: is the database driver jar file properly installed in the FISHEYE_INST/lib directory?

Unable to connect to MySQL database jdbc:mysql://localhost:3306/crucible: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver: is the database driver jar file properly installed in the FISHEYE_INST/lib directory? 위와 같이 에러가 뜬다면 mysql jar 파일이 없어서 그렇다 crucible 설치 폴더 lib 에 mysql-connector-java 파일을 넣어주자

Some tables or columns in the database are not using utf8_bin for their collation, or the default collation for the database is incorrect.

Checks if the collation used by the tables, columns and database defaults in your MySQL database is correct.Some tables or columns in the database are not using utf8_bin for their collation, or the default collation for the database is incorrect. confluence나 jira 나 시스템 점검해주는 Tools 이 있다.초기 DB 셋팅할때 제대로 했으면 모르겠지만 한참 운영중에 위와 같이 뜨면 문제가 발생할수 있다.위 내용을 보면 utf8_bin 에러이다. DB를 확인하자l> SELECT DEFAULT_CHARACT..

Attachment Remove or Edit Link Does Not Exist Despite Having Permission

어느날 갑자기 confluence 파일 삭제나 수정하는 옵션이 사라졌다. 난 권한을 가지고 있는데...? 어디로...? mysql 문제가 발생해서 그렇다 1.confluence 중지2. 혹시 모르니 mysql 백업3. mysql 수정# mysql -u root -p l> use db명;> UPDATE BANDANA set BANDANAVALUE = '' where BANDANAKEY = 'plugin.manager.state.Map';> UPDATE BANDANA set BANDANAVALUE = '' where BANDANAKEY = 'plugin.manager.state.Map'; 3. confluence 구동 생겼다.

jira or confluence 듀얼포트 사용하기

tomcat 기본 포트는 8080 포트 이다.간혹 듀얼로 사용하고 싶은 경우가 발생한다. http://localhost:8080 and http://localhost:8090 이렇게 말이다. 이렇게 하기 위해서는 tomcat 설정을 수정해주면 된다.설정 파일은 아래 경로에 있다. server.xml/jira/jira설치폴더/conf/server.xml 위 부분중에 까지 그대로 복사 해서 포트만 추가하면 된다. 이렇게 해서 8090포트를 하나더 추가 하면 된다. 서비스 재시작 하면http://localhost:8080 and http://localhost:8090 둘다 접속이 가능하다. 하지만 1024 이하의 포트는?1024 이하의 포트로 tomcat 서비스를 구동하려면 ROOT 권한이 필요하다.하지만 R..

Upgrade failed. Please consult the system logs for details. You will need to fix these problems, restore your database and confluence home directory to the pre upgrade state. Then retry the upgrade.

Upgrade failed. Please consult the system logs for details. You will need to fix these problems, restore your database and confluence home directory to the pre upgrade state. Then retry the upgrade. confluence 운영하다 보면 운영과 테스트를 나눠서 작업을 한다 테스트서버를 구동하다보면 위와 같이 에러가 발생한다.에러가 발생하다면 http://yoursite.com8090/fixonly/fixlicense.action접속해서 라이선스를 입력 해주고 서비스를 재구동해주면 된다. 라이선스는 view developer license 를 이용해서 넣어..

crucible,fisheye backup & restore

crucible,fisheye backup & restore 방법 - 백업 방법서버 접속http://localhost:8060/admin System setting - backup 항목 선택모두 체크해서 백업을 하거나 repository 만 빼고 백업 repository 는 데이터량이 많으니 제외 하고 하는게 좋다 - 복원새로운 서버에 java 및 mysql 설치 설치방법 참조 http://algo79.tistory.com/entry/Crucible-%EC%84%A4%EC%B9%98 계정생성# useradd crucible# passwd password 혹시 db가 mysql 방식이라면 db 생성mysql> SET GLOBAL storage_engine = 'InnoDB';mysql> CREATE DAT..

728x90
반응형