라라벨 프레임워크 설치 시 필요한 라라벨 인스톨러를 터미널을 이용해 설치하려고 하면 해당 에러를 뿜어냄
대충 해석하면 openssl이 확장되어 있지 않아 사용이 불가하다라고 나오는 듯
composer config -g -- disable-tls true 명령어로 해제가 가능하나
추천하지 않음
php + apache 연동 때 사용한 php.ini (필자가 윈도우라 경로는 C:\Windows 일 것이다.) 를 열어
openssl을 찾아 ;(세미콜론)을 제거해주어 확장시킨다.
그런 다음 다시 라라벨 인스톨러를 설치해주면 정상적으로 된다.
composer global require "laravel/installer=~1.1"
'개발자노트' 카테고리의 다른 글
오라클 계정 비밀번호 초기화(Oracle User Password Reset) (0) | 2016.12.19 |
---|---|
[Laravel] Vagrant error : A VirtualBox machine with the name 'homestead-7' already exists (0) | 2016.10.29 |
Mysql 비밀번호 분실 시 조치(for Windows) (0) | 2016.08.20 |
Thread Safe(쓰레드 세이프) (0) | 2016.08.20 |
Django Error NoReverseMatch Reverse for '???' with arguments '()' and keyword arguments '{}' not found. (0) | 2016.07.23 |