• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn cài đặt Apache, PHP, MySQL, và phpMyAdmin trên CentOS

Admin

Well-Known Member
Staff member
Administrator
I.Cài đặt các dịch vụ HTTPD, PHP, MySQL


Chạy 3 lệnh sau:
Code:
yum install httpd*
yum install php53*
yum install mysql-5*


Tiếp theo là cấu hình cho httpd (đơn giản thôi ah)
- Mở file httpd.conf
Code:
vi /etc/httpd/conf/httpd.conf


- Tìm dòng 265
Code:
nhấn Shift + ;
gõ set nu
enter
nhấn Shift + ; tiếp
gõ 265
enter


- Rồi sửa www.example.com thành domain của mình
- Save lại thoát ra:
Code:
Shift + ;
wq
enter


Khởi động apache + mysql
Code:
service httpd start
service mysqld start


II. Cài phpMyAdmin


Đầu tiên download gói phpmyadmin về:
Code:
wget http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/3.4.10.1/phpMyAdmin-3.4.10.1-all-languages.tar.gz


Giải nén ra:
Code:
tar -vxzf [php + tab]


Copy thư mục vừa giải nén ra vào document root:
Code:
cp -R [php+tab] /var/www/html/phpmyadmin


Đổi tên file config:
Code:
mv /var/www/html/phpmyadmin/config.sample.inc.php /var/www/html/phpmyadmin/config.inc.php


Tìm dòng:
$cfg['Servers'][$i]['auth_type'] = 'cookie';
sửa lại thành:
$cfg['Servers'][$i]['auth_type'] = 'http';


Add user vào mysql:
Code:
mysqladmin -u root password <yourpassword>


Bây giờ các bạn chỉ cần gõ tên domain/phpmyadmin là có thể vào được phpmyadmin. Dùng tài khoản mysql tạo ở trên để login vào.


Thư mục gốc chứ web sẽ nằm ở địa chỉ: /var/www/html


Ngoài ra các bạn cũng có thể cài đặt phpmyadmin bằng cách gõ lệnh:
Code:
yum install phpmyadmin


Chúc các bạn thành công!
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top