1. Add repo
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
2. Cài đặt
yum --enablerepo=remi -y install phpMyAdmin
3. Cấu hình
mở file vhost (etc/nginx/conf.d/abc.conf)
abc.conf: Tên file vhost của bạn
Thêm vào cuối file đoạn rule sau
server {
listen 1109; # listen port
server_name localhost;index index.php index.html index.htm;
location / {
root /usr/share/phpMyAdmin; # Document root
}fastcgi_pass 127.0.0.1:9000;
location ~ \.php$ {
root /usr/share/phpMyAdmin; # Document root
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Trong đó
- 1109: Là port dể vào phpmyadmin. Các bạn có thể đặt tùy ý. Lưu ý port cần phải free và không có service nào sử dụng để tránh xung đột
Danh sách port các bạn có thể xem ở đây: http://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers
4. Mở port
Mở file /etc/sysconfig/iptables thêm vào rule sau
-A INPUT -m state --state NEW -p tcp --dport 1109 -j ACCEPT
- Khởi động lại iptables
service iptables restart- Khởi động lại nginx
service nginx restart- Truy cập theo địa chỉ
http://domain.com:1109hoặc
http://ip-server:2313
Đăng nhận xét Blogger Facebook