LFD: là tên viết tắt của Login Failure Daemon. Nó là một daemon process chạy trên một server có CSF bảo mật. LFD quét các server logs files định kỳ (mỗi X giây) để gửi lại các lỗi đăng nhập và xem xét các sự cố như “Brute Force Attacks” và chặn các IP đó với sự trợ giúp của…
Hướng dẫn cài đặt Redis trên VPS
Truy cập ssh và chạy lệnh sau: yum update yum install redis systemctl start redis systemctl enable redis Nếu bạn gặp lỗi no package redis available thì bạn chạy lệnh bên dưới trước rồi chạy các lệnh ở trên. yum install epel-release Sau khi cài đặt xong, các bạn nhớ kiểm tra lại xem Redis đã chạy hay chưa bằng lệnh sau redis-cli…
Hướng dẫn Start/Stop/Restart cron service trên các distro Linux phổ biến
Start/Stop/Restart cron service trên Redhat/Fedora/CentOS Nếu bạn sử dụng Redhat/Fedora/CentOS thì cần đăng nhập SSH vào server rồi thực hiện các câu lệnh sau Start cron service Để Start dịch vụ Cron trên Redhat/Fedora/CentOSbạn gõ câu lệnh sau vào terminal: /etc/init.d/crond start Hoặc service crond start Stop cron service Để Stop dịch vụ Cron trên Redhat/Fedora/CentOSbạn gõ câu lệnh…
Warning in CSF : Check csf SYSLOG_CHECK option (This option helps prevent brute force attacks on your server services)
Warning in CSF : Check csf SYSLOG_CHECK option (This option helps prevent brute force attacks on your server services) Solution: # vi /etc/csf/csf.conf search for “SYSLOG_CHECK” and change the value something like 600. save and exit the configuration file. Restart the CSF firewall #csf -r
Làm quen VIM trong 5 phút
VIM là một editor nổi tiếng và được rất nhiều người ghét =)) Nói vậy không có nghĩa là không ai thích VIM, rất nhiều người thích sử dụng VIM và hầu như chẳng bao giờ thèm đụng tới những công cụ như Sublime hay Atom nữa. Ưu điểm của VIM là mọi thao tác đều có thể thực hiện…
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…
Một số công cụ báo cáo tình trạng sử dụng PHP OPCache dưới dạng GUI
There are some GUI’s created to help maintain OpCache and generate useful reports. These tools leverage the above functions. OpCacheGUI Disclaimer I am the author of this project Features: OpCache status OpCache configuration OpCache statistics OpCache reset Cached scripts overview Cached scripts invalidation Multilingual Mobile device support Shiny graphs Screenshots: URL: https://github.com/PeeHaa/OpCacheGUI opcache-status Features: OpCache status OpCache configuration OpCache statistics Cached…
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…
Cấu hình để VPS gửi email thông báo khi có đăng nhập qua SSH
VPS của bạn có nhiều User sử dụng ? Và bạn muốn VPS gửi email thông báo cho bạn mỗi khi có user đăng nhập vào VPS . Hay đơn giản, bạn muốn nhận thông báo qua email mỗi khi VPS được đăng nhập qua SSH. Bạn có thể làm được điều đó một cách rất đơn giản theo hướng…
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 /
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…
Install OPCache to Improve PHP Performance in CentOS 7
PHP is one of the most popular programming language for developing applications, you will find it on every web hosting server. The most popular Content Management Systems (CMSs) are written in PHP, such as WordPress, Drupal, and Joomla. One of the many reasons why PHP is well known out there is because it has numerous extensions in its default distribution, an example is OPcahce. What is Opcache and How Does…