분류 전체보기
-
[Statistics Basic] 2. Descriptive StatisticsStatistics/Basic 2020. 10. 19. 17:03
Descriptive Statistics Organizing and analyzing the data so that the characteristics of the collected data can be easily grasped, making it easy to interpret. - Plotting or charting given data - Various statistical methods to describe data characteristics such as sum, central tendency(mean), degree of spread(variance), median, and correlation coefficient Frequency distribution table - Frequency ..
-
[Statistics Basic] 1. What is Data?Statistics/Basic 2020. 10. 19. 16:44
What is data? All facts and values that can have meaning as data collected through observation and measurement. Data Processing Object -> Measurement -> Data -> Analysis or Processing -> Information -> Knowledge What is the standard scale when measuring data? - Categorical type: nominal scale, ranking scale - Numerical type: isometric scale, ratio scale 1. Categorical type (Qualitative Data) : c..
-
[PHP 에러 해결하기] PHP message: PHP Warning: phpinfo() It is not safe to rely on the system's timezone settingsWeb/PHP 2020. 10. 13. 14:11
PHP 설치하기 2020/09/29 - [Web/Nginx] - Nginx에 php-fpm 설치하기 for Centos7 Nginx에 php-fpm 설치하기 for Centos7 Centos 환경에서 nginx를 설치한 후 php-fpm을 설치하여 환경설정을 셋팅해보는 방법을 알아보자. 1. 먼저 php-fpm을 설치한다. $ yum install -y php php-fpm php-mysql 이후 DB 추가 설치를 위해 php-mysql도 함.. eusun0830.tistory.com PHP를 설치하고 phpinfo 파일로 테스트 할 때 로그에 FastCGI sent in stderr: "PHP message: PHP Warning: phpinfo(): It is not safe to rely on th..
-
PHP와 Android 연동하기Web/PHP 2020. 10. 13. 13:59
Centos7에 PHP 설치하기 2020/09/29 - [Web/Nginx] - Nginx에 php-fpm 설치하기 for Centos7 Nginx에 php-fpm 설치하기 for Centos7 Centos 환경에서 nginx를 설치한 후 php-fpm을 설치하여 환경설정을 셋팅해보는 방법을 알아보자. 1. 먼저 php-fpm을 설치한다. $ yum install -y php php-fpm php-mysql 이후 DB 추가 설치를 위해 php-mysql도 함.. eusun0830.tistory.com Centos7에 MySQL 설치하기 2020/10/06 - [Web/Nginx] - Nginx에 MySQL 설치하기 for Centos7 Nginx에 MySQL 설치하기 for Centos7 Centos 환..
-
MySQL 한글 깨짐 인코딩 문제 해결하기Database/MySQL 2020. 10. 13. 11:40
2020/10/06 - [Web/Nginx] - Nginx에 MySQL 설치하기 for Centos7 Nginx에 MySQL 설치하기 for Centos7 Centos 환경에 PHP를 설치한 후 MySQL을 연동하는 방법을 알아보자. 1. MySQL 설치하기 $ yum install mysql-server 먼저 MySQL 서버를 설치해준다. 2. mysqld 데몬을 실행 및 자동 재시작 설정하기 $ systemctl s.. eusun0830.tistory.com Centos 7에 MySQL 설치하기 Centos 7에 MySQL을 설치한 후, 데이터베이스, 테이블 등을 생성하고 서버와의 연동 테스트를 하던 중 한글입력시 글자가 깨져서 출력되는 문제를 발견했다. 영어, 숫자 등은 제대로 들어가지만 한글만 깨..
-
Nginx에 MySQL 설치하기 for Centos7Web/Nginx 2020. 10. 6. 13:42
Centos 환경에 PHP를 설치한 후 MySQL을 연동하는 방법을 알아보자. 1. MySQL 설치하기 $ yum install mysql-server 먼저 MySQL 서버를 설치해준다. 2. mysqld 데몬을 실행 및 자동 재시작 설정하기 $ systemctl start mysqld $ systemctl enable mysqld $ systemctl status mysqld ● mysqld.service - MySQL Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: active (running) since Thu 2020-09-17 17:10:38 KST; 3 d..
-
Nginx에 Node.js 설치하기 ( fast-cgi ) for Centos7Web/Nginx 2020. 10. 5. 09:41
Centos 환경에서 nginx 엔진에 php-fpm을 설치한 후, node.js를 설치하여 환경 설정을 셋팅해보는 방법을 알아보자. php-fpm과 Node.js로 Fast-CGI 세팅하기 1. epel 저장소 확인 $ yum repolist | grep epel * epel: d2lzkl7pfhq30w.cloudfront.net !epel/x86_64 Extra Packages for Enterprise Linux 13,445+1 1-1. epel 저장소가 없으면 설치 $ yum install epel-release 2. Node.js 설치 $ yum -y install nodejs 3. 설치 확인 $ node -v v12.18.4 $ npm -v 6.14.6 node.js 설치 시 npm도 같이 설..
-
Nginx에 php-fpm 설치하기 for Centos7Web/Nginx 2020. 9. 29. 13:52
Centos 환경에서 nginx를 설치한 후 php-fpm을 설치하여 환경설정을 셋팅해보는 방법을 알아보자. 1. 먼저 php-fpm을 설치한다. $ yum install -y php php-fpm php-mysql 이후 DB 추가 설치를 위해 php-mysql도 함께 설치해 주었다. DB 설치가 필요 없는 사람은 php-mysql을 설치하지 않아도 된다. 2. php-fpm 설정 수정하기 $ vi /etc/php-fpm.d/php-fpm.sock ... // 해당 부분 주석 해제 및 수정 listen = /var/run/php-fpm./php-fpm.sock listen.owner = nginx listen.group = nginx user = nginx group = nginx 3. php-fpm 데..