[macOS]맥에서 파일디렉토리 구조 출력 원하는 디렉토리에 가서 아래 명령어 실행 $ tree 혹시 없다면 설치 $ brew install tree $ tree --help usage: tree [-acdfghilnpqrstuvxACDFJQNSUX] [-H baseHREF] [-T title ] [-L level [-R]] [-P pattern] [-I pattern] [-o filename] [--version] [--help] [--inodes] [--device] [--noreport] [--nolinks] [--dirsfirst] [--charset charset] [--filelimit[=]#] [--si] [--timefmt[=]] [--sort[=]] [--matchdirs] [--ignore-case] [--fromfile] [-.. mac os 2020. 7. 10. 11:08
[PHP]xdebug설치 후 php.ini설정 php.ini에 추가 12345678[xdebug]zend_extension=xdebug.soxdebug.remote_autostart=1xdebug.remote_log="/var/log/xdebug.log"xdebug.remote_host=localhostxdebug.remote_handler=dbgpxdebug.remote_port=9000xdebug.remote_enable=1cs PHP 2020. 7. 10. 09:00
[macOS]mac에서 ssh접속 편하게 하기 ~/.ssh/config 에 설정(없으며 만든다.) Host forward HostName 123.456.789.12 User ec2-user IdentityFile ~/identity/pemFileName.pem LocalForward localhost:1234 amazonaws.com:3306 Host aws HostName 234.567.890.12 User userName IdentityFile ~/identity/pemFileName.pem Host : 나중에 ssh명령어 뒤에 넣을 이름 HostName : IP IdentityFile : pemfile경로 LocalForward {localhost:로컬에서사용할포트} {원격지IP:포트} $ ssh forward $ ssh aws ssh명령어로 .. mac os 2020. 7. 10. 07:31
[macOS]Terminal Shortcut 터미널 단축키 입력행 시작부분까지 삭제 Ctrl + U 참고사이트 https://support.apple.com/ko-kr/guide/terminal/trmlshtcts/mac Mac용 터미널의 키보드 단축키 Mac의 터미널에서 키보드 단축키를 사용하여 작업을 빠르게 수행할 수 있습니다. support.apple.com mac os 2020. 7. 9. 14:08
[AWS]Route53 https://brunch.co.kr/@topasvga/49 52. Route53 이란? ISP 네트워크 엔지니어, DNS담당자가 보는 Route53 이해 | 1.Route 53 란? AWS에서 제공하는 DNS(Domain Name Service)이다. 일반 DNS 이해 일반 DNS동작에 대해 알아보자 - DNS동작 과정은 네트워크 통신을 하기 �� brunch.co.kr AWS 2020. 7. 8. 18:31
[PHP][macOS]xdebug 최신 버전으로 설치해도 계속 예전 버전으로 표시되는 문제 http://rob-santoro.com/how-to-php-mac-catalina-setup/ 일단 php brew에서 삭제하고 아래의 폴더들도 삭제해줬다. $ brew uninstall php $ rm -Rf /usr/local/etc/php/* 그리고 다시 brew install php로 설치한후 Path에 그 경로를 추가해줬다 $ brew install php # ~/.bash_profile에 추가 $ export PATH=:/usr/local/Cellar/php/7.4.7/bin:$PATH $ source ~/.bash_profile 그리고 xdebug설치 명령어를 실행 $ pecl install xdebug 에러없이 잘 설치가 됨 $ php -v PHP 7.4.7 (cli) (built: Ju.. PHP 2020. 7. 8. 08:55
[gitlab].gitlab-ci.yml 설정 # deploy:테스트환경 deploy_staging: stage: deploy before_script: - cd $WORKING_DIR - rm -Rf $WORKING_DIR/.git* script: - git clone --no-checkout https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/{해당 gitlaburl}.git $WORKING_DIR/bk && mv $WORKING_DIR/bk/.git . && rm -rf $WORKING_DIR/bk && git checkout --force develop tags: - staging(gitlab-runner에서 선언한 태그) only: - develop environment: staging when: on.. gitlab 2020. 7. 6. 20:03
[centos]gitlab runner 설치 Gitlab runner 설치 curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash sudo yum install gitlab-runner Gitlab runner 등록 sudo gitlab-runner register Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com/): https://gitlab.com/ Please enter the gitlab-ci token for this runner: Gitlab CI/CD settings > Runner 에 적힌 토큰을 적어줍니다. Please enter .. gitlab 2020. 7. 6. 20:01