CentOS+Apache+PHP+MariaDB 환경 구축
3755 단어 computer
1. MariaDB 설치
4
[admin@localhost Desktop]$ yum list | grep mariadb
mariadb.x86_64 1:5.5.60-1.el7_5 @base
mariadb-libs.x86_64 1:5.5.60-1.el7_5 @base
mariadb-bench.x86_64 1:5.5.60-1.el7_5 base
mariadb-devel.i686 1:5.5.60-1.el7_5 base
mariadb-devel.x86_64 1:5.5.60-1.el7_5 base
mariadb-embedded.i686 1:5.5.60-1.el7_5 base
mariadb-embedded.x86_64 1:5.5.60-1.el7_5 base
mariadb-embedded-devel.i686 1:5.5.60-1.el7_5 base
mariadb-embedded-devel.x86_64 1:5.5.60-1.el7_5 base
mariadb-libs.i686 1:5.5.60-1.el7_5 base
mariadb-server.x86_64 1:5.5.60-1.el7_5 base
mariadb-test.x86_64 1:5.5.60-1.el7_5 base
2. 설치합니다.
[admin@localhost Desktop]$ sudo yum install mariadb mariadb-server -y
3. 설치 성공 여부를 확인합니다.
[admin@localhost Desktop]$ rpm -qa | grep mariadb
mariadb-libs-5.5.60-1.el7_5.x86_64
mariadb-server-5.5.60-1.el7_5.x86_64
mariadb-5.5.60-1.el7_5.x86_64
4. 자주 사용하는 명령입니다.
# mariadb
[admin@localhost Desktop]$ rpm -ql mariadb
#
[admin@localhost Desktop]$ systemctl enable mariadb
# mariadb
[admin@localhost Desktop]$ systemctl start mariadb
# mariadb
[admin@localhost Desktop]$ systemctl stop mariadb
# mariadb
[admin@localhost Desktop]$ systemctl restart mariadb
5. 데이터베이스를 사용합니다.
[admin@localhost Desktop]$ mysql -u root -p
2. Apache 구성 요소 설치
1. 우선yum에httpd가 포함된 가방이 있는지 확인한다.
[admin@localhost Desktop]$ yum list | grep httpd
httpd.x86_64 2.4.6-89.el7.centos.1 updates
httpd-devel.x86_64 2.4.6-89.el7.centos.1 updates
httpd-manual.noarch 2.4.6-89.el7.centos.1 updates
httpd-tools.x86_64 2.4.6-89.el7.centos.1 updates
keycloak-httpd-client-install.noarch 0.6-3.el7 base
libmicrohttpd.i686 0.9.33-2.el7 base
libmicrohttpd.x86_64 0.9.33-2.el7 base
libmicrohttpd-devel.i686 0.9.33-2.el7 base
libmicrohttpd-devel.x86_64 0.9.33-2.el7 base
libmicrohttpd-doc.noarch 0.9.33-2.el7 base
python2-keycloak-httpd-client-install.noarch
2. 설치합니다.
[admin@localhost Desktop]$ sudo yum install httpd -y
3. 설치 성공 여부를 확인합니다.
[admin@localhost Desktop]$ rpm -qa | grep httpd
httpd-tools-2.4.6-89.el7.centos.1.x86_64
httpd-2.4.6-89.el7.centos.1.x86_64
4. 자주 사용하는 명령입니다.
# httpd
[admin@localhost Desktop]$ rpm -ql httpd
#
[admin@localhost Desktop]$ systemctl enable httpd
# httpd
[admin@localhost Desktop]$ systemctl start httpd
# httpd
[admin@localhost Desktop]$ systemctl stop httpd
# http
[admin@localhost Desktop]$ systemctl restart httpd
5. 테스트.서비스를 시작하면 브라우저가 열립니다.http://127.0.0.1/웹 페이지를 볼 수 있습니다.구성 파일은/etc/httpd/conf에 있습니다.
참고 문헌
https://www.linuxidc.com/Linux/2018-03/151403.htm http://down.chinaz.com/server/201109/1064_1.htm
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JS] 기본 문법const나 debugger 같은 키워드는 이미 일부 브라우저에서 사용. 자바스크립트에서 이름을 붙일 때 사용. 키워드를 사용 불가. Input, Output 같은 의미있는 단어 사용. alert() 함수 alert...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.