본문 바로가기

오라클 계정 비밀번호 초기화(Oracle User Password Reset) sqlplus 실행(execute) sqlplus / as sysdba alter user system identified by "1234" 끝(end) 더보기
[Laravel] Vagrant error : A VirtualBox machine with the name 'homestead-7' already exists A VirtualBox machine with the name 'homestead-7' already exists 그리고 ==> homestead-7: VM not created. Moving on... 이 에러는 컴퓨터를 끌 때 제대로 vagrant destroy를 안해줘서 생겨난다.(꼭 컴퓨터 끄기전에 destroy를 해서 정상 종료를 하자) 해결 방법은 virtualBox를 실행 한 후나타나는 모든 충돌요소들을 삭제한다. 그리고 나서 vagrant global-status로 확인하고 목록에 없는 것을 확인 한 후다시 vagrant up을 해주면 된다. 더보기
[PHP + Laravel] 라라벨 인스톨러 설치 시 Composer\Exception\NoSslException 에러 해결법 라라벨 프레임워크 설치 시 필요한 라라벨 인스톨러를 터미널을 이용해 설치하려고 하면 해당 에러를 뿜어냄 대충 해석하면 openssl이 확장되어 있지 않아 사용이 불가하다라고 나오는 듯 composer config -g -- disable-tls true 명령어로 해제가 가능하나 추천하지 않음 php + apache 연동 때 사용한 php.ini (필자가 윈도우라 경로는 C:\Windows 일 것이다.) 를 열어 openssl을 찾아 ;(세미콜론)을 제거해주어 확장시킨다. 그런 다음 다시 라라벨 인스톨러를 설치해주면 정상적으로 된다. composer global require "laravel/installer=~1.1" 더보기