일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JS
- 리눅스
- PostgreSQL
- 3.0
- java
- 우분투
- 윈도우
- DB
- node
- 데이터베이스
- ubuntu
- 스크립트
- Windows
- 설치
- 설정
- Atlassian
- 노드
- postgres
- 자바
- 아틀라시안
- hamonikr
- install
- 하모니카
- javascript
- 파이썬
- script
- Linux
- DATABASE
- python
- 자바스크립트
- Today
- Total
목록OS/HamoniKR (26)
LukeHan 의 잡다한 기술 블로그
ubuntu 설정기본 패키지 설치 및 설정sudo apt-get updatesudo apt-get install -y vim net-tools tree bash-completion neofetch bpytop htop ufw위와 같이 입력하여 패키지 정보 업데이트 후 설치 진행한다. 설치 패키지 정보는 다음과 같다.vim : 편집기net-tools : 네트워크 상태 확인tree : 디렉토리 및 파일 계층 구조 확인bash-completion : tab 키로 자동 완성neofetch : OS 정보 확인bpytop, htop : 리소스 모니터링ufw : 방화벽 설정 iptable 설정sudo vi /etc/iptables/rules.v4위와 같이 입력하여 iptable 설정 정보를 연다. -A I..
서버 환경 구성 중 bash script 에서 tab 을 활용한 자동 완성이 되지 않는 문제가 발생하였다. sudo apt-get install bash-completion 위와 같이 입력하여 bash-completion package 를 설치한다. vi ~/.bashrc 위와 같이 입력하여 .bashrc 파일을 수정한다. ...# enable bash completion in interactive shellsif ! shopt -oq posix; then if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_compl..
ubuntu@lukeHan:~$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree... DoneReading state information... DoneE: Unable to locate package vim ubuntu 서버 환경 구성을 위해 vim 설치 시 위와 같이 에러가 발생하였다. sudo apt-get update 위와 같이 입력하여 프로그램 업데이트를 진행한다. ubuntu@lukeHan:/etc/apt$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree... DoneReading state inform..
lukehan@lukehan:/etc/apache2/sites-available$ sudo certbot --apache Saving debug log to /var/log/letsencrypt/letsencrypt.log Which names would you like to activate HTTPS for? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: test.lukehan.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Select the appropriate numbers separated by..
OS : Ubuntu 22.04.2 LTS lukehan@lukehan:/etc/apache2/sites-available$ sudo service apache2 status ● apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Active: active (running) since Fri 2024-03-08 17:11:50 KST; 5min ago Docs: https://httpd.apache.org/docs/2.4/ Process: 3639120 ExecStart=/usr/sbin/apachectl start (code=ex..
개발환경 구축을 위해 하모니카 SUN 버전에서 Python3.9 버전 설치가 필요했다. 하모니카 SUN 버전은 ubuntu 18.04 를 베이스로 제작된 OS 이니 ubuntu 18.04 에서 Python3.9 를 설치하는 경우 해당 문서를 참고하면 된다. sudo add-apt-repository ppa:umang/indicator-stickynotes 위와 같이 PPA 를 추가한다. 만약 gpg 에러가 발생하는 경우 PPA-추가-시-GPG-에러-발생하는-경우 의 문서를 참고하여 수정 적용 한다. sudo apt-get update PPA 가 추가 되었다면 위와 같이 입력하여 반영한다. sudo apt-get install indicator-stickynotes 업데이트 하였다면 위와 같이 입력하여 설..