Centos 7.5 나왔네요.. (2018-May-07) > 서버관리자

서버관리자

서버관리자 모임 게시판 입니다.

Centos 7.5 나왔네요.. (2018-May-07) 정보

Centos 7.5 나왔네요.. (2018-May-07)

첨부파일

CentOS-7-x86_64-DVD-1804.torrent (83.8K) 4회 다운로드 2018-08-12 23:06:39
CentOS-7-x86_64-NetInstall-1804.torrent (19.9K) 0회 다운로드 2018-08-12 23:06:49

본문

다음에서 배포한 디자인도 많이 변경되었습니다.

 

간만에 들어가니 많이 변경되었네요..

 

http://mirror.kakao.com/centos/7.5.1804/isos/x86_64/

 

2009320995_1534081509.0371.png

 

----------------------------------------------------------------------

亞波治님 파일로 테스트 해본 결과 이상 없습니다. (그누M 설치 및 실행 이상 무)

https://sir.kr/so_server/1597?page=2

----------------------------------------------------------------------

 

----------------------------------------------------------------------
[rott@localhost~]# useradd 아이디
[rott@localhost~]# passwd 아이디

[rott@localhost~]# cd home
[rott@localhost home]# chmod 701 아이디

[rott@localhost home]# cd 아이디
[rott@localhost 아이디]# mkdir public_html
[rott@localhost 아이디]# chmod 755 public_html
[rott@localhost 아이디# chown -R 아이디.아이디

//디비 생성하기..
[rott@localhost 아이디]# mysql
GRANT ALL PRIVILEGES ON 아이디DB.* TO 아이디@localhost IDENTIFIED BY '비번';
exit

[rott@localhost 아이디]# mysql -u아이디 -p비번
create DATABASE 아이디DB;
exit;

 

[rott@localhost 아이디]# vi /etc/httpd/conf.d/host.conf
<VirtualHost *:80>
 ServerName 홈페이지주소.com    //주소명 . 주소가 없다면 아이피 주소 192.168.0.2
 DocumentRoot /home/아이디/public_html
    <Directory /home/아이디/public_html>
       AllowOverride All
    </Directory>
</VirtualHost>

[rott@localhost 아이디]# systemctl restart httpd

----------------------------------------------------------------------

 

공감
0
  • 복사

댓글 3개

© SIRSOFT
현재 페이지 제일 처음으로