일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 환경변수
- development
- install
- undefined
- restapi
- HATEOAS
- SpringInitializer
- oracle
- Web
- mysql
- mssql
- postman
- SpringSecurity
- RESTful
- sqldeveloper
- apache
- 스프링시큐리티
- Tomcat #SpringFramework
- Oracle11g
- ojdbc
- IntelliJ
- Database
- 스프링부트 #springboot #project #Intellij
- tcping
- Maven
- 웹개발
- springboot
- Developer
- springboot #controller #jsp
- 스프링부트
Archives
- Today
- Total
여백에 도장 찍기
환경변수 영구설정 본문
EXPORT 를 통해 환경변수 설정해도 영구적으로 설정되지 않는다.
~/.bash_profile 파일을 생성해서 설정해주어야 한다.
1. ~/.bash_profile 설정
# 최초 설정 시 bash_profile 생성
vi ~/.bash_profile
# source 명령어를 통해 수정된 내용 적용
source ~/.bash_profile
~/.bash_profile에는 설정이 되어있으나 환경변수가 먹히지 않는 경우가 있다.
터미널이 zsh을 바라보고있기 때문에 zsh에서 bas_profile을 포함하게 설정해줘야한다.
2. ~/.zshrc 설정
# zshrc 생성 및 bash_profile 포함하도록 설정
vi ~/.zshrc
source ~/.bash_profile
# 적용
source ~/.zshrc
'Mac 개발환경' 카테고리의 다른 글
Homebrew 설치 (0) | 2022.01.04 |
---|
Comments