Live Brilliant

리눅스 계정생성및 도메인등록 본문

개발은 핵찜이야/리눅스

리눅스 계정생성및 도메인등록

주인정 2012. 4. 13. 19:12

1. useradd superman --계정생성
2. passwd superman --비밀번호 설정
new password : 1234
retype new password : 1234
3. grep superman /etc/passwd --계정정보 확인
4. grep superman /etc/shadow
--사용자의 aging정보(암호,계정종료일자,패스워드종료일자)
5. grep superman /etc/group --계정 그룹정보
6. chmod -R 755 /home/superman --dir 권한주기
ls -al (-R 하위폴더모두권한주기)
7.chown -R superman:superman /home/superman(dir경로)
8.$>vi /usr/local/apache2/conf/httpd.conf
맨밑에 정보에 맞게 추가한다
1 <VirtualHost *:80>
2 ServerAdmin master@kkk.com
3 DocumentRoot /home/hahaha/public_html
4 ServerName kkk.com
5 ServerAlias hahaha.kkk.com
8 </VirtualHost>
$>/usr/local/apache2/bin/apachectl restart

DNS는 호스팅 업체 요청

---- named.conf 설정 ---

^^DB 생성^^
1. mysql root 로접속
2. use mysql;
3. show databases; --DB 확인
4. create database super_db --DB생성
5. desc user; --테이블 필드 확인
6. select host, user, password from user; --선택한필드의레코드출력
7. insert into user (host, user, password)
values('localhost','유저명',password('1234')); --계정및 비빌번호등록
8. select host,user,password from user; --추가된 유저 확인
9. desc db ; --테이블 구조 확인
10. insert into db values

('localhost','super_db','유저명','y','y','y','y','y','y','y','y','y','y','y

','y','y','y','y','y','y'); --유저에게 DB 모든 권한을 부여한다.
11. flush privileges;

Comments