Thủ Thuật

Lệnh tải Source WordPress tự động trên Linux

4.8
(12)

Lệnh tải source WordPress tự động, tự tạo userdatabase mới.

Các bạn Copy script sau ra Notepad rồi sửa những chỗ cần thiết rồi Paste hết vào cửa sổ Console.

cd PathtoFolder/domain.com
wget http://wordpress.org/latest.tar.gz
tar xfz latest.tar.gz
mv wordpress/* ./
rmdir ./wordpress/
rm -f latest.tar.gz
mysql -u root -pPassroot
create database Databasename;
grant usage on *.* to newuser@localhost identified by ‘passnewuser’;
grant all privileges on Databasename.* to newuser@localhost;
use Databasename;
exit

Copy hết lệnh, sửa và paste vào Console.

Giải thích ý nghĩa các thành phần trong Script auto-download WordPress.

  • PathtoFolder/domain.com: Chỗ này các bạn phải tạo trước 1 folder lưu source website WordPress mới –> Sau đó thay thế vào.
  • mysql -u root -pPassroot : Đây là lệnh để đăng nhập vào mysql với root là user dùng để đăng nhập vào mysql của bạn. Passrootpassword của user đăng nhập vào mysql. Nhớ là -pPassroot thế pass vào phải đi liền với -p không khoảng trắng.
  • Databasename tên database sẽ khởi tạo.
  • newuserpassnewuser: Tên userpassword mới để WordPress kết nối.
Lệnh Tải source WordPress, tạo database tự động trên Linux

Tất cả các lệnh trên ý nghĩa là Download Source WordPress về giải nén trong folder chỉ định, rồi tạo ra 1 database, user, pass mới trong mysql.

Bạn truy cập Domain đã trỏ về host để bắt đầu bước Install WordPress khai báo điền database, user, pass vừa tạo.

How useful was this post?

thuthuatcaidat.com

View Comments

Recent Posts

Ví dụ về việc chuyển file giữa 2 VPS

Đôi khi việc chuyển file hoặc download từ local Việt Nam đi các VPS nước…

3 năm ago

Thay đổi port SSH trên Linux

Kiểm tra port SSH đang sử dụng trên VPS netstat -atnp | grep "ssh" Kiểm…

3 năm ago

Sửa lỗi phpMyAdmin – Error

phpMyAdmin – Error Error during session start; please check your PHP and/or webserver log file…

5 năm ago

Thiết lập MySQLDumper

Đây là phần quản lý mysql, cơ sở dữ liệu lớn, dành cho những bạn…

5 năm ago

Tự động xóa hết file log trên VPS Linux bằng Crontab

Sẽ không có hình ảnh minh họa cụ thể nào, tất cả hướng dẫn sẽ…

5 năm ago

Cách cài đặt Fail2Ban trên CentOS 7

Cách cài đặt Fail2Ban trên CentOS 7. There were xxxxx failed login attempts since the…

5 năm ago