Yêu cầu: server hostname phải được trỏ về IP của máy chủ cài VestaCP Ví dụ: hostname của bạn là sv.binhminh.net thì bạn cần trỏ DNS sv.binhminh.net và www.sv.binhminh.net về địa chỉ IP của máy chủ Tiếp theo, bạn cần kiểm tra trong /etc/hostname để xem hostname là gì nếu không đúng với hostname thực tế thì cần thay đổi…
Hạ cấp PHP 7.4 về PHP 7.3 trên VestaCP
Hiện tại thì khi cài đặt VestaCP thì sẽ có phiên bản PHP là 7.4 beta, mà hiện tại đa số code chưa hỗ trợ PHP 7.4 tốt nên cần hạ cấp về PHP 7.3. Đây là bài viết giúp bạn làm điều này Đăng nhập vào VPS với quyền ROOT và chạy lần lượt các lệnh sau: yum install…
MyVesta Control Panel – Một bản fork tập trung vào sự an toàn và ổn định
Vesta Control Panel là một trình quản lý yêu thích của mình trong việc quản trị VPS và vận hành các website bởi sự đơn giản và dễ dùng, tuy nhiên cũng rất mạnh mẽ và đầy đủ chức năng. Hôm nay mình check trên github của VestaCP thì thấy có 1 chủ đề mới đó là myvestacp.com – Tò…
How to Auto Change IP Address in VestaCP
Just change your IPs in your /etc/network/interfaces, then /usr/local/vesta/bin/v-update-sys-ip or goto WebUI >> IP >> Re-Read IP then do /usr/local/vesta/bin/v-change-web-domain-ip for your domains one by one or batch them After that just rebuild Web/DNS/Email for your users and reboot your server.
Fixing VestaCP open_basedir error
So, this. This has been a pain in the ass for EVER. Every time I install VestaCP, I have to fix this before doing anything else with my code. This issue wasn’t there when I started using VestaCP. Then came an update. Yeah, you get my point. ???? I know it’s good for security. But still it’s a pain. So here’s…
Thiết lập dung lượng RAM tối đa cho Redis
Redis là hệ thống caching lưu trữ dữ liệu trong RAM tương tự như Memcached. Không chỉ hỗ trợ cache dạng keys/values tốt như Memcached mà Redis còn hỗ trợ nhiều cấu trúc dữ liệu khác như hash, list, set, sorted set, string. Redis hỗ trợ đầy đủ các chức năng tương tự Memcached nhưng có thao tác lấy và nạp dữ liệu rất nhanh…
Speed up VestaCP on CentOS 7
Let’s Learn how to Speed up VestaCP on CentOS 7. Vesta Control Panel is an open source hosting control panel that is simple and easy to use. The interface is clean and simple with lots of useful functionalities which should help you host websites on your VPS. Vesta Control Panel currently can be installed on RHEL 5, RHEL 6, CentOS 5, CentOS 6,…
Tối ưu trang WordPress chạy với VestaCP
Trong quá trình làm việc, do tính chất công việc nên mình đã tiếp xúc kha khá các server sử dụng VestaCP làm Control Panel và trên nền tảng WordPress. Đặc điểm chung của các server này là khá chậm,hiệu suất không cao và thường bị quá tải RAM hay CPU. Trong bài viết này, mình sẽ đưa ra một…
Hướng dẫn cài đặt và cấu hình PHP Zend OPcache trên CentOS
Sử dụng APC hoặc APCu từ lâu đã là một phương pháp opcode cache được sử dụng rộng rãi để tối ưu hoạt động của VPS. Tuy nhiên APC không được cập nhật, nâng cấp thường xuyên (phiên bản stable mới nhất 3.1.9 ra ngày 2011-05-14) và thỉnh thoảng vẫn xuất hiện một số lỗi vặt. Với sự xuất hiện…
How to change VestaCP port and add firewall rules
Here is a simple all in one command solution that will do it for you from terminal sed -i 's/8083;/2083;/' /usr/local/vesta/nginx/conf/nginx.conf && v-add-firewall-rule ACCEPT 0.0.0.0/0 2083 TCP && v-delete-firewall-rule 2 && service vesta restart If you have not modified the default firewall rules #2 is for the 8083. If you have you can use this longer command to be more…
Xử lý lỗi “read-only file system” trên Linux
Để đây viết bài chi tiết sau 🙂 mount -o remount,rw /dev/sda1 /
Get the official VestaCP File Manager plugin for free, forever
The VestaCP File Manager was inspired by the magnificent GNU Midnight Commander, so it shouldn’t be a surprise when the main screen is similar to what you’d see on the terminal in MC. The File Manger makes it easy for users to manage their directories and files directly from the browser and perform uploads/downloads without using a clumsy sFTP connection. Screenshot…
How to Fix “Specify a Vary: Accept-Encoding Header” Warning
Are you seeing the “Specify a Vary: Accept-Encoding Header” warning in Pingdom, GTmetrix, or Google PageSpeed Insights on your WordPress site? This is an HTTP header and should be included on every origin server response, as it tells the browser whether or not the client can handle compressed versions of the content. For example, let’s say you have an old browser without gzip compression and…
X-XSS Protection in VestaCP
Edit /etc/nginx/conf.d/nginx.conf Add add_header X-Frame-Options SAMEORIGIN; add_header X-Content-Type-Options nosniff; add_header X-XSS-Protection "1; mode=block"; Save and reload nginx service nginx restart Check Nginx header curl -I domain.com
Upgrade Mariadb 5.5 to Mariadb 10.2 on Centos 7 VestaCP
In this tutorial we’ll upgrade/install to Mariadb 10.2 on Centos 7 running Vesta CP, by default vesta cp will install old base version of Mariadb 5.5 when installing on Centos 7. This tutorial will also work without vestacp installed. MariaDB is designed as a drop-in replacement of MySQL with more features, new storage engines, fewer bugs, and better performance. MariaDB…