ssh로 root 로그인하도록 설정
vi /etc/ssh/sshd_config
33번줄 PermitRootLogin yes로 수정
service ssh restart
putty 로 접속할 때 오류 나는 경우
오류 메시지
expected key exchange group packet from server
ssh 키 교환 문제
해결책은 https://imitator.kr/Linux/1042 참고
ifconfig 명령어 대신 ip address 명령어 사용
기존에 IP Address를 확인하거나 설정하던 ifconfig 명령어가 사라져 ip 명령어를 사용해야 한다.MariaDB 설정(MySQL 설정)
mysql -uroot
set password for 'root'@'localhost'=password('비밀번호');
flush privileges;
create user '사용자명'@'localhost' identified by '비밀번호';
create database 데이터베이스명;
grant all privileges on 데이터베이스명.* to '사용자명'@'localhost' ;
alias 설정
vi /etc/bash_completion
alias ls='ls --color'
alias l='ls -l'
alias ll='ls -al'
alias xy='exit'
PHP short_open_tag를 On으로 설정
vi /etc/php/7.0/apache2/php.ini
202번줄 short_open_tag = On
PHP 7.0 에선 mysql 함수 지원 안함
mysqli 함수나 PDO_Mysql 이용해야 함
PHP 7.0 문법 변경사항
카페24에서 PHP 7.0으로 변경하는 법
댓글 없음:
댓글 쓰기