Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Last active March 15, 2020 08:23
Show Gist options
  • Save lelinhtinh/14f7844cff1317c8ed255bf5fd1faae8 to your computer and use it in GitHub Desktop.
Save lelinhtinh/14f7844cff1317c8ed255bf5fd1faae8 to your computer and use it in GitHub Desktop.
Cài đặt LAMP server trong WSL

Cài đặt LAMP server trong WSL

Cài đặt Ubuntu

Kích hoạt WSL (Windows Subsystem for Linux) bằng cách mở PowerShell với quyền Admin (Run as administrator), và chạy lệnh:

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

Khởi động lại máy.

Cài đặt ứng dụng Ubuntu 18.04 LTS từ Microsoft Store.

Mở ứng dụng Ubuntu và cập nhật hệ thống:

sudo apt update && sudo apt upgrade

Lưu ý: Các lệnh bên dưới đều được thực hiện trong Ubuntu._

Cài đặt bằng Tasksel

sudo apt install tasksel
sudo tasksel install lamp-server
sudo service apache2 start

Vậy là xong rồi đó. Truy cập http://localhost/ xem kết quả.

Cấu hình Apache2

sudo a2enmod rewrite
sudo service apache2 restart

Ẩn cảnh báo lỗi APR_TCP_DEFER_ACCEPT #1953:

sudo nano /etc/apache2/apache2.conf

Thêm vào cuối:

AcceptFilter https none
AcceptFilter http none

Lưu và thoát.

Cấu hình MySQL

Bước này chủ yếu là để đặt mật khẩu cho tài khoản root.

sudo usermod -d /var/lib/mysql/ mysql
sudo service mysql start
sudo mysql_secure_installation

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

Cài đặt plugin kiểm duyệt mật khẩu:

VALIDATE PASSWORD PLUGIN can be used to test passwords and improve security. It checks the strength of password and allows the users to set only those passwords which are secure enough. Would you like to setup VALIDATE PASSWORD plugin?

Press y|Y for Yes, any other key for No: N

Mình dùng trên local thôi nên chọn No cho nó nhanh, cài trên server thì nên chọn Yes, nó sẽ ra các tùy chọn như bên dưới:

There are three levels of password validation policy:

LOW Length >= 8

MEDIUM Length >= 8, numeric, mixed case, and special characters

STRONG Length >= 8, numeric, mixed case, special characters and dictionary file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 1

Đặt mật khẩu cho tài khoản root.

Please set the password for root here.

New password:

Re-enter new password:

Estimated strength of the password: 100

Xác nhận lưu mật khẩu.

Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y

Một số tùy chỉnh bảo mật khác.

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? (Press y|Y for Yes, any other key for No) : 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? (Press y|Y for Yes, any other key for No) : 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? (Press y|Y for Yes, any other key for No) : 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? (Press y|Y for Yes, any other key for No) : Y

Success.

All done!

Khắc phục một số vấn đề thường gặp với MySQL

Gỡ bỏ plugin VALIDATE PASSWORD nếu ở trên lỡ chọn Yes:

sudo mysql -h localhost -u root -p

mysql> uninstall plugin validate_password;
mysql> exit;

sudo service mysql restart

Đặt mật khẩu tài khoản root nếu đang trống, hoặc không đăng nhập được:

sudo mysql -u root

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'YOURPASSWORDHERE';
mysql> exit;

sudo service mysql restart

Cài đặt virtualhost

Dùng để tạo tên miền ảo, và đưa thư mục www ra ngoài home nhằm tránh các vấn đề do phân quyền.

cd /usr/local/bin
sudo wget -O virtualhost https://github.com/lelinhtinh/virtualhost/raw/master/virtualhost.sh
sudo chmod +x virtualhost

Cách dùng:

sudo virtualhost [create | delete] [domain]

Lưu ý: Khởi động Ubuntu với quyền Admin (Run as administrator) trước khi dùng lệnh virtualhost.

Cài đặt Adminer

Adminer là trình quản lý database, chức năng tương tự phpMyAdmin nhưng nhẹ và nhanh hơn nhiều.

sudo virtualhost create adminer.test
cd ~/www/adminer
wget -O index.php https://www.adminer.org/latest-mysql-en.php

Truy cập http://adminer.test/ để sử dụng.

Tạo shortcut khởi chạy LAMP server

Cho phép chạy service không cần mật khẩu:

sudo nano /etc/sudoers

Thêm vào cuối:

%sudo   ALL=(root)    NOPASSWD: /usr/sbin/service *
%wheel  ALL=(root)    NOPASSWD: /usr/sbin/service *

Lưu và thoát.

Tạo shell script khởi chạy:

cd ~/
nano lamp_start.sh

Nhập vào:

#!/bin/bash
sudo service apache2 restart
sudo service mysql restart

Lưu và thoát.

Thêm quyền thực thi:

chmod +x lamp_start.sh

Tạo vbscript lamp_start.vbs tại vị trí bất kỳ trên máy bằng Notepad:

Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "C:\Windows\System32\bash.exe -c ~/lamp_start.sh",0
Set WshShell = Nothing

Lưu và đóng lại.

Bây giờ bạn có thể chạy LAMP server bằng cách nhấp đúp vào lamp_start.vbs. Nên tạo shortcut ra Desktop và thay icon cho đẹp.

Để LAMP server tự động chạy khi khởi động Windows, bạn chỉ cần chép lamp_start.vbs vào thư mục:

C:\Documents And Settings\All Users\Start Menu\Programs\Startup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment