1. Cài đặt Mysql server

yum -y install mysql-server

- Khởi động mysql server

service mysqld start

- Cấu hình mysql server tự động khởi động

chkconfig mysqld on

- Đặt mật khẩu cho mysql

mysql_secure_installation


Enter current password for root (enter for none): (Mật khẩu hiện tại do chưa có nên gõ Enter luôn)

Remove anonymous users? [Y/n]  Y
Disallow root login remotely? [Y/n] Y
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y


2. Cài đặt php

yum -y install php php-mysql

- Mở file etc/php.ini tìm

;date.timezone = 

Sửa thành

date.timezone = "Asia/Saigon"

- Khởi động lại apache

service httpd restart

3. Cài đặt phpmyadmin

- Thêm repo

wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

rpm -ivh epel-release*

rm epel-release*

- Cài phpmyadmin

yum -y install phpmyadmin

- Mở file /etc/httpd/conf.d/phpMyAdmin.conf sửa

<Directory /usr/share/phpMyAdmin/>
   AddDefaultCharset UTF-8
   <IfModule mod_authz_core.c>
     # Apache 2.4
     <RequireAny>
       Require ip 127.0.0.1
       Require ip ::1
     </RequireAny>
   </IfModule>
   <IfModule !mod_authz_core.c>
     # Apache 2.2
     Order Deny,Allow
     Deny from All
     Allow from 127.0.0.1
     Allow from ::1
   </IfModule>
</Directory>

Thành

<Directory /usr/share/phpMyAdmin/>
   AddDefaultCharset UTF-8
   <IfModule mod_authz_core.c>
     # Apache 2.4
     <RequireAny>
       Require ip All
       Require ip ::1
     </RequireAny>
   </IfModule>
   <IfModule !mod_authz_core.c>
     # Apache 2.2
     Order Deny,Allow
     Deny from All
     Allow from All
     Allow from ::1
   </IfModule>
</Directory>

- Mở file /etc/phpMyAdmin/config.inc.php

Tìm:   $cfg['blowfish_secret'] = '685562101352827009';

Thay dãy số 685562101352827009 bằng một dãy số tùy ý



VIDEO



Đăng nhận xét Blogger

 
Top