centos 7
-
1. Nodejs 설치여부 확인 - Nodejs repolist 확인 : yum repolist * epel repolist 존재하지않을경우 : yum install -y epel-release * epel repolist 존재할경우 : rpm -qa | grep nodejs 설치 여부 확인 : yum update 2. 특정 Nodejs 설치 (10.x 버전) : curl -sL https://rpm.nodesource.com/setup_10.x | bash - * 특정버전 설치 시 10.x 를 특정버전으로 수정 : yum install -y gcc-c++ make : yum install -y nodejs : node -v : npm -v 끝.
nodejs 특정버전 설치1. Nodejs 설치여부 확인 - Nodejs repolist 확인 : yum repolist * epel repolist 존재하지않을경우 : yum install -y epel-release * epel repolist 존재할경우 : rpm -qa | grep nodejs 설치 여부 확인 : yum update 2. 특정 Nodejs 설치 (10.x 버전) : curl -sL https://rpm.nodesource.com/setup_10.x | bash - * 특정버전 설치 시 10.x 를 특정버전으로 수정 : yum install -y gcc-c++ make : yum install -y nodejs : node -v : npm -v 끝.
2021.10.03 -
기본 데이터베이스 설정 경로 - vi /etc/my.cnf [client] host=localhost user=root password=rbsl401095 database=wizdb 추가 * CentOS 7 : systemctl restart mariadb 확인 : mysql -u root -p : 패스워드 입력 바꼈다.
MariaDB 기본 데이터베이스 설정(Default Database)기본 데이터베이스 설정 경로 - vi /etc/my.cnf [client] host=localhost user=root password=rbsl401095 database=wizdb 추가 * CentOS 7 : systemctl restart mariadb 확인 : mysql -u root -p : 패스워드 입력 바꼈다.
2021.09.06