Cài đặt Apache2 với PHP5 và MySQL trên Fedora 13 (LAMP)

Cập nhật lúc 07h54' ngày 22/06/2010

QTM - Thuật ngữ LAMP viết tắt của Linux, Apache, MySQL, PHP. Trong bài viết sau, Quản Trị Mạng sẽ giới thiệu với các bạn cách cài đặt hệ thống web server Apache2 lên Fedora 13 server với PHP5 hỗ trợ (mod_php) và MySQL.

Lưu ý sơ bộ

Trong bài viết này sử dụng hostname server1.example.com và địa chỉ IP 192.168.0.100. Đối với các hệ thống và trường hợp khác, các bạn cần thay đổi thong số cho phù hợp.

Cài đặt MySQL 5

Để cài đặt MySQL, chúng ta thực hiện câu lệnh sau:

yum install mysql mysql-server

Sau đó, tạo kết nối khởi động cho MySQL (khởi động cùng hệ thống) và kích hoạt MySQL server:

chkconfig --levels 235 mysqld on
/etc/init.d/mysqld start

Chạy lệnh:

mysql_secure_installation

để khởi tạo mật khẩu cho tài khoản người dùng root (nếu không thì bất cứ ai cũng có thể truy cập cơ sở dữ liệu MySQL):

[root@server1 ~]# mysql_secure_installation



NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): <-- nhấn Enter
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] <-- nhấn Enter
New password: <-- tạo mật khẩu rootsql
Re-enter new password: <-- tạo mật khẩu rootsql
Password updated successfully!
Reloading privilege tables..
... Success!


By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] <-- nhấn Enter
... Success!

Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] <-- nhấn Enter
... Success!

By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] <-- nhấn Enter
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] <-- nhấn Enter
... Success!

Cleaning up...



All done! If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!


[root@server1 ~]#

Cài đặt Apache2

Hiện tại, Apache2 đã có sẵn dưới dạng gói cài đặt, vì vậy thực hiện câu lệnh sau:

yum install httpd

Thiết lập hệ thống để khởi động Apache lúc ban đầu:

chkconfig --levels 235 httpd on

Sau đó khởi động Apache:

/etc/init.d/httpd start

Mở trình duyệt và gõ địa chỉ http://192.168.0.100, bạn sẽ nhìn thấy trang kiểm tra ban đầu của Apache2 như sau:

Thư mục root mặc định của Apache là /var/www/html trên hệ thống Fedora, file cấu hình là /etc/httpd/conf/httpd.conf, và các thiết lập khác đều được lưu trữ trong thư mục /etc/httpd/conf.d/.

Trang: 
T.Anh (theo Howtoforce)
Đánh giá(?):
META.vn | Mua sắm trực tuyến
Bài viết mới nhất
Xem tất cả
Bài viết cũ hơn cùng chủ đề