일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- nodejs
- springboot
- mysql
- Bitbucket
- npm
- spring
- Git
- orm
- Stash
- 시스템운영
- SonarQube
- JVM
- 트랜잭션
- 스프링
- slave node
- 마이바티스
- Java
- 엘라스틱서치
- sql
- heap메모리
- Gradle
- Apach
- DB
- 아파치
- 자바
- ElasticSearch
- 레드마인
- mybatis
- Elk
- 리눅스
- Today
- Total
목록호이잇 프로그래밍 (77)
프로그래머호이잇
error: RPC failed; curl 18 transfer closed with outstanding read data remaining fatal: fatal: The remote end hung up unexpectedly early EOF fatal: index-pack failed 위와 같은 에러가 발생시 아래 와 같이 입력해줍니다 git config --global http.postBuffer 524288000 용량이 큰 파일을 pull 하거나 push 하실때 발생할 것으로 생각이됩니당!
mkdir /ssh_key 인증서 파일을 /ssh_key 로 이동! 그후 chown -R root:root /ssh_key chmod -R 777 /ssh_key 혹시 /etc/httpd/conf.d/ssl.conf 파일이 있다면 mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf_bk vi /etc/httpd/conf/httpd.conf 맨아래 요렇게 추가!! Listen 443 SSLEngine on SSLCertificateKeyFile /ssh_key/파일명.key.pem SSLCertificateFile /ssh_key/파일명.crt.pem SSLCertificateChainFile /ssh_key/파일명.pem SSLCACertificateFi..
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] VirtualHost 안에다가 이놈을 추가합니다. 그전에 mod_rewrite 가 Load 되어있어야함!
cd 레드마인 홈 vi config/environment.rb 맨밑에 추가Redmine::Utils::relative_url_root = "/redmine" vi config.ru 변경 전require ::File.expand_path('../config/environment', __FILE__)run RedmineApp::Application 변경 후 require ::File.expand_path('../config/environment', __FILE__)map '/redmine' do run RedmineApp::Applicationend 레드 마인 재시작!!
gem install thin# gem에 thin을 설치 vi Gemfile# 아래내용 추가 필요gem "thin" bundle install --path vendor/bundle# thin 설치 nohup script/rails server thin -e production &# thin 으로 서버 실행
yum install httpd cd /var/www/html 모두 삭제(저는 필요없기 떄문에 삭제하는겁니다)rm -rf * vi index.html 생성 vi /etc/httpd/conf/httpd.conf 아래와 같이 변경 Listen 9091 -> Listen 80 http://localhost 로 접속!!! index.html 에 입력한 내용이 출력되면 완료
CREATE DATABASE bitbucket CHARACTER SET utf8 COLLATE utf8_bin;GRANT ALL PRIVILEGES ON bitbucket.* TO 'bitbucketuser'@'localhost' IDENTIFIED BY 'password';FLUSH PRIVILEGES; wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.44.tar.gz tar -zxvf mysql-connector-java-5.1.44.tar.gz cd mysql-connector-java-5.1.44 cp mysql-connector-java-5.1.44.jar /lib cd /lib chown -R bitbu..
yum list java*jdk-devel yum install 원하는 버전example ) yum install java-1.7.0-openjdk-devel.x86_64 java -versionjavac -version 위 2개는 버전 체크 버전 체크 후 원하는 버전이면 정상설치완료!!
저는 yum으로 설치하니 git 1.8.1 버전..ㅠㅠㅠ 높은 버전이 필요하여 소스설치하였습니다!! wget https://github.com/git/git/archive/v2.4.12.tar.gz $ tar -zxf git-2.4.12.tar.gz$ cd git-2.4.12$ make configure$ ./configure --prefix=/usr$ make all doc info$ sudo make install install-doc install-html install-info 혹시나 진행중 요런 에러가 나올시에는Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5..
우선 다운로드 경로!!https://www.atlassian.com/software/bitbucket/download 버킷 유저 생성!!useradd bitbucketpasswd bitbucket bitbucket User SSH 접속 막자... 중국에서 위협한다!! vi /etc/pam.d/sshd#%PAM-1.0auth required pam_listfile.so item=user sense=deny file=/etc/ssh/sshusers onerr=succeed vi /etc/ssh/sshusers (기존에 없는 파일 생성하는거임)bitbucket 다운로드(저는 5.3.1 버전입니다. 다들 저 위에 경로에서확인하세용!)wget https://downloads.atlassian.com/softwar..