windows7에서
xe 설치 아래 링크 들어가서 다운
https://www.xpressengine.com/
sulinux server에서
알드라이브로 test3 폴더에 넣어놓자. //ftp로 넣으면 된다.
unzip xe 로 압축해제
mv ex ./public_html
chmod 707 xe -R
Windows7
http://test3.co.kr/xe/
suliunx server
1. service mysqld restart //mysql재시작
2. mysql -p mysql //접속
3. show databases; //데이터베이스 목록
4. create database test2; //test2라는 db 생성
5. flush privileges; //즉시반영
6. show databases; //test2만들어진 것을 확인
7. insert into user(host,user,password) values('localhost','test2',password('root')); //user테이블에 삽입
8. flush privileges; //즉시반영
9. grant all privileges on test2. * to test2@localhost identified by 'root'; //권한 부여
10. flush privileges; //즉시반영
11. service mysqld restart
12. select host,user,password from user;
windows7 //설정한 값 대로 주자.
vi /usr/local/apache/conf/extra/httpd-vhosts.conf //xe경로를 매핑
service httpd restart
설치가 완료되면 뜨는 화면에서 설정을 들어간다.
경로를 변경
test3.co.kr 로접속 했을 시 아래와 같이 뜬다.
CentOS
create database mbc;
flush privileges;
insert into user(host,user,password) values('192.168.232.130','mbc',password('root')); //210만 가능
values('192.168.232.%','mbc',password('root')); //c클래스 전체
values('%','mbc',password('root')); //모든호스트 가능
grant all privileges on mbc. * to 'mbc'@'%' identified by 'root'; //권한 부여
Windows 7
//DB호스트네임에 CentOS ip 입력 한다.
'System Security' 카테고리의 다른 글
메타스플로잇 (0) | 2019.03.07 |
---|---|
apmtools(apache) (0) | 2019.03.04 |
DNS서버 (0) | 2019.02.27 |
FTP (2) | 2019.02.26 |
NFS(Network File System) (0) | 2019.02.25 |