본문 바로가기

Linux7

CentOS7에 APM설치 APM(웹서버)- Apache, php, MariaDB를 통칭한다. APM구조 CentOS7, VMware workstation15에서 설치했다. - APM 설치하기 yum install httpd mod_ssl php php-cli mariadb-server php-mysql -y - 서비스 설정 systemctl enable httpd.servicesystemctl enable mariadb.servicesystemctl start httpd.servicesystemctl start mariadb.service - 방화벽 설정 firewall-cmd --permanent --add-service=httpfirewall-cmd --permanent --add-service=httpsfirewall-cm.. 2018. 11. 5.
Xfce Ubuntu(xUbuntu) 설치 Xfce- Linux 환경에서 올릴 수 있는 데스크탑 환경중 하나- 가볍다는 장점이 있다. Ubuntu 서버가 설치 되어 있다는 가정 하에 서술함. 레포지토리 다음카카오로 설정sudo cp /etc/apt/sources.list ~/sources.list.oldsudo sed -i 's/kr.archive.ubuntu.com/ftp.daumkakao.com/g' /etc/apt/sources.listsudo diff ~/sources.list.old /etc/apt/sources.list | wc -l마지막 명령어를 실행 했을때 38이 나와야 정상이다. 0이 나온다면 us.archive.ubuntu...로 다시 명령어를 입력하면 된다. 주분투 데스크톱 설치sudo apt update && sudo apt.. 2018. 10. 27.
CentOS에 MySQL설치 CentOS 7 설치 완료 화면(초기 설정 화면에서 랜카드를 디폴트값이 안잡혀있어서 꼭 잡아주어야한다 ) CentOS 7에는 MariaDB가 설치되어 있어 MySQL를 설치하려면 조금의 과정을 거쳐야 한다. https://dev.mysql.com/downloads/repo/yum/ 위의 사이트에 들어가서 CentOS에 맞는 패키지 이름을 보고 yum명령어를 이용해 install하면 된다. 패키지 설치 명령어rpm -ivh https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm MySQL 설치yum install mysql-community-server MySQL 구동systemctl start mysqld 시스템 부팅시 자동으로 실행되.. 2018. 10. 18.