Tải bản đầy đủ (.pdf) (6 trang)

Hướng dẫn tạo Virtual Hosting với PureFTPd và MySQL ppt

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (118.83 KB, 6 trang )

Hướng dẫn tạo Virtual Hosting với PureFTPd và MySQL
QuanTriMang.com - 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 PureFTPd server sử dụng các tài khoản người dùng ảo từ cơ sở dữ liệu
của MySQL, tất cả đều ở bên trong hệ thống thực. Quá trình này thực sự rất có ích
vì giúp hệ thống kiểm soát được hàng trăm tới hàng ngàn tải khoản ftp trên từng
máy trạm. Một khía cạnh khác được đề cập đến là cách sử dụng quota và lượng
băng thông upload/download giới hạn, mật khẩu truy cập sẽ được lưu trữ và mã
hóa thành chuỗi MD5 trong cơ sở dữ liệu. Để quản trị cơ sở dữ liệu MySQL, người
dùng có thể sử dụng các công cụ dựa trên nền tảng web như phpMyAdmin. Toàn
bộ bài thử nghiệm sau được thực hiện trên nền tảng OpenSUSE 11.3 (các bạn có
thể tham khảo thêm tại đây)

Lưu ý sơ bộ

Tại đây chúng ta sử dụng hostname server1.example.com với địa chỉ IP
192.168.0.100, và người sử dụng cần thay thế nhưng thông số này tương ứng với
hệ thống của họ.

Cài đặt MySQL, Apache2 và phpMyAdmin

Tất cả các module cần thiết của MySQL, Apache và PHP dành cho phpMyAdmin
có thể được cài đặt như sau:
yast2 -i mysql mysql-client mysql-community-server apache2 apache2-mod_php5
php5-mysql php5-mcrypt php5-mbstring php5-gd
Sau đó tạo đường dẫn startup cho MySQL (để MySQL tự động kích hoạt khi hệ
thống khởi động) và sử dụng MySQL server:
chkconfig add mysql
/etc/init.d/mysql start
Để tăng thêm độ bảo mật cho quá trình cài đặt MySQL, các bạn sử dụng câu lệnh
sau:
mysql_secure_installation


sau đó, hệ thống sẽ hỏi bạn một số thông tin như sau:
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] < chọn Y
New password: < điền mật khẩu MySQL root
Re-enter new password: < xác nhận lại mật khẩu
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] < chọn Y
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] < chọn tiếp Y
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] < chọn Y
- 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] < chọn Y

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!


Server1:~ #
Sau đó tiếp tục tạo đường dẫn khởi động cho Apache và kích hoạt:
chkconfig add apache2
/etc/init.d/apache2 start
Và cài đặt phpMyAdmin như sau:
zypper install
/>3/noarch/phpMyAdmin-3.3.4-1.1.noarch.rpm
Kiểm tra lại quá trình cài đặt phpMyAdmin có thành công hay không bằng cách gõ
địa chỉ hoặc
http://192.168.0.100/phpMyAdmin/ vào trình duyệt.

×