<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lưu trữ FastPanel - Hướng dẫn TENTEN</title>
	<atom:link href="https://help.tenten.vn/tag/fastpanel/feed/" rel="self" type="application/rss+xml" />
	<link>https://help.tenten.vn/tag/fastpanel/</link>
	<description>Tài liệu hỗ trợ khách hàng</description>
	<lastBuildDate>Fri, 13 Feb 2026 01:56:13 +0000</lastBuildDate>
	<language>vi</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://help.tenten.vn/wp-content/uploads/2023/09/favicontenten.png</url>
	<title>Lưu trữ FastPanel - Hướng dẫn TENTEN</title>
	<link>https://help.tenten.vn/tag/fastpanel/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Hướng Dẫn Sửa Lỗi FASTPANEL Không Khởi Động Sau Khi Tự Update</title>
		<link>https://help.tenten.vn/sua-loi-fastpanel-khong-khoi-dong-sau-update/</link>
		
		<dc:creator><![CDATA[Nguyễn Hoàng Minh]]></dc:creator>
		<pubDate>Fri, 13 Feb 2026 01:55:33 +0000</pubDate>
				<category><![CDATA[Cloud VPS]]></category>
		<category><![CDATA[Kiến thức chung]]></category>
		<category><![CDATA[cannot unmarshal into int fastpanel]]></category>
		<category><![CDATA[FastPanel]]></category>
		<category><![CDATA[fastpanel2.service failed]]></category>
		<guid isPermaLink="false">https://help.tenten.vn/?p=14521</guid>

					<description><![CDATA[<p>Hướng Dẫn Sửa Lỗi FASTPANEL Không Khởi Động Sau Khi Tự Update Đây là hướng dẫn sửa lỗi cho ubuntu 20.04, nếu bạn sử dụng phiên bản khác, vui lòng sửa file ubu20.yml thành phiên bản của bạn, ví dụ như ubuntu 22.04 thì file sẽ là ubu22.yml 1. Hiện tượng lỗi Khi kiểm tra &#8230;</p>
<p>Bài viết <a href="https://help.tenten.vn/sua-loi-fastpanel-khong-khoi-dong-sau-update/">Hướng Dẫn Sửa Lỗi FASTPANEL Không Khởi Động Sau Khi Tự Update</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><!-- Bài viết hướng dẫn sửa lỗi FASTPANEL (WordPress HTML) --></p>
<h1>Hướng Dẫn Sửa Lỗi FASTPANEL Không Khởi Động Sau Khi Tự Update</h1>
<p>Đây là hướng dẫn sửa lỗi cho ubuntu 20.04, nếu bạn sử dụng phiên bản khác, vui lòng sửa file ubu20.yml thành phiên bản của bạn, ví dụ như ubuntu 22.04 thì file sẽ là ubu22.yml</p>
<h2>1. Hiện tượng lỗi</h2>
<p>Khi kiểm tra log:</p>
<pre><code>journalctl -u fastpanel2 -n 50 --no-pager</code></pre>
<p>Xuất hiện lỗi:</p>
<pre><code>ERROR: Unable to load './config/modules' config:
Cannot parse 'config/modules/ubu20.yml' file:
yaml: unmarshal errors:

line 723: cannot unmarshal !!str `24.6.0` into int
line 729: cannot unmarshal !!str `23.11.1` into int
...</code></pre>
<p>Service liên tục restart:</p>
<pre><code>fastpanel2.service: Scheduled restart job, restart counter is at 129316</code></pre>
<p>FASTPANEL không thể khởi động.</p>
<h2>2. Nguyên nhân</h2>
<p>FASTPANEL tự động cập nhật lên phiên bản mới.</p>
<p>Trong file:</p>
<pre><code>/usr/local/fastpanel2/config/modules/ubu20.yml</code></pre>
<p>Các version NodeJS được khai báo dạng chuỗi, ví dụ:</p>
<pre><code>24.6.0
23.11.1
22.18.0</code></pre>
<p>Trong khi phiên bản FASTPANEL mới yêu cầu kiểu dữ liệu <strong>integer</strong> (major version), ví dụ:</p>
<pre><code>24
23
22</code></pre>
<p>Do sai kiểu dữ liệu nên YAML không parse được, dẫn tới service không khởi động.</p>
<p>Ngoài ra còn thiếu cột <code>site_id</code> trong database SQLite sau update.</p>
<h2>3. Cách Fix Chi Tiết</h2>
<h3>Bước 1: Backup file cấu hình</h3>
<pre><code>cp /usr/local/fastpanel2/config/modules/ubu20.yml \
   /usr/local/fastpanel2/config/modules/ubu20.yml.bak</code></pre>
<h3>Bước 2: Chuyển version NodeJS từ x.y.z về x</h3>
<p>Sửa các dòng dạng:</p>
<pre><code>nodejs 24.6.0:</code></pre>
<p>Thành:</p>
<pre><code>nodejs 24:</code></pre>
<p>Chạy lệnh:</p>
<pre><code>sed -i -E 's/nodejs ([0-9]+)\.[0-9]+\.[0-9]+:/nodejs \1:/g' \
/usr/local/fastpanel2/config/modules/ubu20.yml</code></pre>
<h3>Bước 3: Sửa format version trong YAML</h3>
<p>Chuyển:</p>
<pre><code>version: '24.6.0'</code></pre>
<p>Thành:</p>
<pre><code>version: 24</code></pre>
<p>Chạy:</p>
<pre><code>sed -i -E "s/version: '([0-9]+)\.[0-9]+\.[0-9]+'/version: \1/g" \
/usr/local/fastpanel2/config/modules/ubu20.yml</code></pre>
<h3>Bước 4: Restart FASTPANEL</h3>
<pre><code>systemctl restart fastpanel2</code></pre>
<p>Nếu vẫn chưa lên, tiếp tục bước sửa database.</p>
<h3>Bước 5: Backup database FASTPANEL</h3>
<pre><code>cp /usr/local/fastpanel2/app/db/fastpanel2.db \
   /usr/local/fastpanel2/app/db/fastpanel2.db.backup</code></pre>
<h3>Bước 6: Thêm cột thiếu trong SQLite</h3>
<p>Mở database:</p>
<pre><code>sqlite3 /usr/local/fastpanel2/app/db/fastpanel2.db</code></pre>
<p>Thêm cột:</p>
<pre><code>ALTER TABLE site_upstream_target ADD COLUMN site_id INTEGER;</code></pre>
<p>Thoát:</p>
<pre><code>.exit</code></pre>
<h3>Bước 7: Restart lại service</h3>
<pre><code>systemctl restart fastpanel2</code></pre>
<p>Kiểm tra trạng thái:</p>
<pre><code>systemctl status fastpanel2 --no-pager</code></pre>
<p>Nếu hiển thị:</p>
<pre><code>Active: active (running)</code></pre>
<p>Là đã fix thành công.</p>
<h2>4. Kết quả sau khi sửa</h2>
<p>Service chạy bình thường:</p>
<pre><code>Active: active (running)
Main PID: xxxx (fastpanel)</code></pre>
<p>FASTPANEL truy cập lại được bình thường.</p>
<h2>5. Khuyến nghị</h2>
<ul>
<li>Tắt auto update FASTPANEL nếu có thể.</li>
<li>Hoặc kiểm soát update các module trong thư mục:
<pre><code>/usr/local/fastpanel2/config/modules/</code></pre>
</li>
<li>Nên backup định kỳ:
<ul>
<li>Thư mục <code>/usr/local/fastpanel2</code></li>
<li>Database <code>/usr/local/fastpanel2/app/db/fastpanel2.db</code></li>
</ul>
</li>
</ul>
<p>Bài viết <a href="https://help.tenten.vn/sua-loi-fastpanel-khong-khoi-dong-sau-update/">Hướng Dẫn Sửa Lỗi FASTPANEL Không Khởi Động Sau Khi Tự Update</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hướng dẫn cài đặt nhiều phiên bản PHP trên FastPanel</title>
		<link>https://help.tenten.vn/huong-dan-cai-dat-nhieu-phien-ban-php-tren-fastpanel/</link>
		
		<dc:creator><![CDATA[Trần Hiếu]]></dc:creator>
		<pubDate>Tue, 14 Dec 2021 09:27:58 +0000</pubDate>
				<category><![CDATA[FastPanel]]></category>
		<category><![CDATA[Cài đặt PHP trên FastPanel]]></category>
		<guid isPermaLink="false">https://help.tenten.vn/?p=5944</guid>

					<description><![CDATA[<p>Mặc định sau khi cài đặt FastPanel chúng ta chỉ có mỗi phiên bản PHP 7.2 (AlmaLinux8) mặc định để sử dụng. Vậy nếu muốn sử dụng các phiên bản PHP cao hơn như PHP 7.4, 8.0,&#8230; thì chúng ta phải cài đặt thêm. Và trong bài viết này mình sẽ hướng dẫn cách cài &#8230;</p>
<p>Bài viết <a href="https://help.tenten.vn/huong-dan-cai-dat-nhieu-phien-ban-php-tren-fastpanel/">Hướng dẫn cài đặt nhiều phiên bản PHP trên FastPanel</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Mặc định sau khi <a href="https://help.tenten.vn/huong-dan-cai-dat-fastpanel/">cài đặt FastPanel</a> chúng ta chỉ có mỗi phiên bản PHP 7.2 (AlmaLinux8) mặc định để sử dụng. Vậy nếu muốn sử dụng các phiên bản PHP cao hơn như PHP 7.4, 8.0,&#8230; thì chúng ta phải cài đặt thêm. Và trong bài viết này mình sẽ hướng dẫn cách cài đặt nhiều phiên bản PHP trên FastPanel để tiện cho việc sử dụng.</p>
<figure id="attachment_5945" aria-describedby="caption-attachment-5945" style="width: 503px" class="wp-caption alignnone"><img loading="lazy" decoding="async" class="wp-image-5945 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php_.png" alt="" width="503" height="500" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php_.png 503w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php_-300x298.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php_-150x150.png 150w" sizes="auto, (max-width: 503px) 100vw, 503px" /><figcaption id="caption-attachment-5945" class="wp-caption-text">Khi khởi tạo chỉ có php 7.2</figcaption></figure>
<h2 id="ftoc-heading-1"><span id="I_FastPanel_la_gi">I. FastPanel là gì?</span></h2>
<p><a class="wpel-icon-right" href="http://fastpanel.direct/" target="_blank" rel="noreferrer noopener nofollow external" data-wpel-link="external">FastPanel</a> là một web control panel miễn phí rất tốt ở thời điểm hiện tại. Với rất nhiều tính năng như:</p>
<ul>
<li>Tạo website chỉ với vài cú nhấp chuột.</li>
<li>Quản lý email.</li>
<li>Quản lý cơ sở dữ liệu.</li>
<li>Quản lý sao lưu/khôi phục lên đám mây.</li>
<li>Phân tích lưu lượng truy cập website.</li>
<li>Tạo người dùng.</li>
<li>Có hỗ trợ xác thực hai yếu tố.</li>
<li>Hỗ trợ SSL.</li>
<li>Hỗ trợ tường lửa.</li>
<li>Hỗ trợ cron.</li>
<li>Hỗ trợ nhiều phiên bản PHP.</li>
<li>Tích hợp quét mã độc AI-BOLIT.</li>
<li>Tích hợp Spam Asasin.</li>
<li>Hỗ trợ thao tác lệnh mà không cần SSH thông qua giao diện điều khiển.</li>
<li>Và còn rất nhiều tính năng khác, mình sẽ đề cập trong các bài viết khác</li>
</ul>
<h2>II. Hướng dẫn cài đặt nhiều phiên bản PHP trên FastPanel</h2>
<p>Để cài đặt nhiều phiên bản PHP trên FastPanel chúng ta thực hiện ba bước sau.</p>
<h3>Bước 1: Truy cập vào trang quản trị FastPanel</h3>
<p>Để truy cập vào giao diện FasPanel chúng ta truy cập vào đường dẫn có dạng <code>https://IP:8888</code> trên trình duyệt. Thay <code>IP</code> thành IP VPS hoặc máy chủ FasPanel của bạn.</p>
<p>Dưới đây là giao diện FasPanel của mình.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5931 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1.png" alt="PHP trên FastPanel" width="1899" height="947" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1.png 1899w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-300x150.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-1024x511.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-768x383.png 768w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-1536x766.png 1536w" sizes="auto, (max-width: 1899px) 100vw, 1899px" /></p>
<h3>Bước 2: Thao tác cài đặt nhiều phiên bản PHP trên FastPanel</h3>
<p>Sau khi đã truy cập vào giao diện FASTPANEL chúng ta thực hiện theo thứ tự hình ảnh bên dưới:</p>
<div class="wp-block-image"><img loading="lazy" decoding="async" class="alignnone wp-image-5946 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php1_.png" alt="PHP trên FastPanel" width="1207" height="803" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php1_.png 1207w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php1_-300x200.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php1_-1024x681.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php1_-768x511.png 768w" sizes="auto, (max-width: 1207px) 100vw, 1207px" /></div>
<div><img loading="lazy" decoding="async" class="alignnone wp-image-5948 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php2_-1.png" alt="PHP trên FastPanel" width="1920" height="947" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php2_-1.png 1920w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php2_-1-300x148.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php2_-1-1024x505.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php2_-1-768x379.png 768w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php2_-1-1536x758.png 1536w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></div>
<div>Tại giao diện rất nhiều ứng dụng và danh sách các phiên bản PHP có thể cài đặt.</div>
<div>Ở đây mình có khoanh ra 3 khu vực.</div>
<ul>
<li>Khu vực tìm kiếm ứng dụng (4).</li>
<li>Danh sách phiên bản PHP hỗ trợ có thể cài đặt (5).</li>
<li>Khu vực <strong>Action</strong>(hành động) các bạn có thể cài đặt hoặc gỡ cài đặt ứng dụng (6).</li>
</ul>
<p>Mình sẽ chọn cài đặt phiên bản <strong>PHP 8.0</strong>. Sau khi nhấp vào nút cài đặt bạn sẽ nhận được thông báo quá trình cài đặt như hình bên dưới.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5950" src="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php3_.png" alt="" width="752" height="248" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php3_.png 752w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php3_-300x99.png 300w" sizes="auto, (max-width: 752px) 100vw, 752px" /></p>
<p>Chờ khoảng vài phút để tiến trình cài đặt diễn ra, thời gian cài đặt nhanh hay chậm sẽ tùy thuộc vào sức mạnh VPS/Server và băng thông.</p>
<h3>Bước 3: Lựa chọn phiên bản PHP mới vừa cài đặt</h3>
<p>Thử thêm một website mới đến bước lựa chọn PHP chúng ta cần chọn <code>PHP mode</code> khác với <code>Apache module</code> là có thể lựa chọn phiên bản PHP mới.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5951" src="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php4_.png" alt="" width="502" height="564" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php4_.png 502w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php4_-267x300.png 267w" sizes="auto, (max-width: 502px) 100vw, 502px" /></p>
<p>Để thay đổi PHP cho website đang hoạt động có thể truy cập Control Panel -&gt; Domain -&gt; Settings -&gt; PHP settings và chọn phiên bản PHP cần thay đổi.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5952" src="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php5_.png" alt="" width="1201" height="577" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php5_.png 1201w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php5_-300x144.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php5_-1024x492.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fastpanel.php5_-768x369.png 768w" sizes="auto, (max-width: 1201px) 100vw, 1201px" /></p>
<div class="bs-shortcode-alert alert alert-warning" style="text-align: center;"><span style="color: #000000;"><strong>Gen Hosting</strong> &#8211; sản phẩm mới nhất, ưu việt nhất của TENTEN <strong>x10 lần tốc độ xử lý ổ SSD thông thường lại còn tặng miễn phí trọn đời tên miền .VN.<br />
<a class="btn btn-default btn-sm" href="https://tenten.vn/hosting/mien-phi-tron-doi-ten-mien?code=fVtjJpCaZUGkqDwM&amp;idCampaign=2102" target="_blank" rel="noopener">Nhận ưu đãi ngay</a></strong></span></div>
<p>Bài viết <a href="https://help.tenten.vn/huong-dan-cai-dat-nhieu-phien-ban-php-tren-fastpanel/">Hướng dẫn cài đặt nhiều phiên bản PHP trên FastPanel</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hướng dẫn tạo website và cài đặt WordPress trên FastPanel</title>
		<link>https://help.tenten.vn/huong-dan-tao-website-va-cai-dat-wordpress-tren-fastpanel/</link>
		
		<dc:creator><![CDATA[Trần Hiếu]]></dc:creator>
		<pubDate>Tue, 14 Dec 2021 08:36:14 +0000</pubDate>
				<category><![CDATA[FastPanel]]></category>
		<category><![CDATA[Tạo website trên FastPanel]]></category>
		<guid isPermaLink="false">https://help.tenten.vn/?p=5929</guid>

					<description><![CDATA[<p>Sau khi cài đặt FastPanel chúng ta sẽ đến bước cài đặt website đầu tiên lên control panel này. Và trong bài hướng dẫn này mình sẽ hướng dẫn nhanh cách để chúng ta có thể cài đặt WordPress lên FastPanel. I. FastPanel là gì? FastPanel là một web control panel miễn phí rất tốt &#8230;</p>
<p>Bài viết <a href="https://help.tenten.vn/huong-dan-tao-website-va-cai-dat-wordpress-tren-fastpanel/">Hướng dẫn tạo website và cài đặt WordPress trên FastPanel</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Sau khi <a href="https://help.tenten.vn/huong-dan-cai-dat-fastpanel/">cài đặt FastPanel</a> chúng ta sẽ đến bước cài đặt website đầu tiên lên control panel này. Và trong bài hướng dẫn này mình sẽ hướng dẫn nhanh cách để chúng ta có thể cài đặt WordPress lên FastPanel.</p>
<h2 id="ftoc-heading-1">I. FastPanel là gì?</h2>
<p><a class="wpel-icon-right" href="http://fastpanel.direct/" target="_blank" rel="noreferrer noopener nofollow external" data-wpel-link="external">FastPanel</a> là một web control panel miễn phí rất tốt ở thời điểm hiện tại. Với rất nhiều tính năng như:</p>
<ul>
<li>Tạo website chỉ với vài cú nhấp chuột.</li>
<li>Quản lý email.</li>
<li>Quản lý cơ sở dữ liệu.</li>
<li>Quản lý sao lưu/khôi phục lên đám mây.</li>
<li>Phân tích lưu lượng truy cập website.</li>
<li>Tạo người dùng.</li>
<li>Có hỗ trợ xác thực hai yếu tố.</li>
<li>Hỗ trợ SSL.</li>
<li>Hỗ trợ tường lửa.</li>
<li>Hỗ trợ cron.</li>
<li>Hỗ trợ nhiều phiên bản PHP.</li>
<li>Tích hợp quét mã độc AI-BOLIT.</li>
<li>Tích hợp Spam Asasin.</li>
<li>Hỗ trợ thao tác lệnh mà không cần SSH thông qua giao diện điều khiển.</li>
<li>Và còn rất nhiều tính năng khác, mình sẽ đề cập trong các bài viết khác.</li>
</ul>
<h2>II. Tạo website trên FastPanel</h2>
<h3>Bước 1: Truy cập FastPanel</h3>
<p>Để truy cập vào giao diện FastPanel chúng ta truy cập vào đường dẫn có dạng <code>https://IP:8888</code> trên trình duyệt. Thay <code>IP</code> thành IP VPS hoặc máy chủ FastPanel của bạn.</p>
<p>Dưới đây là giao diện FastPanel của mình. Cũng như cách để thêm 1 website mới.</p>
<div class="wp-block-image"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5930" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web_.png" alt="" width="1917" height="977" data-wp-editing="1" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web_.png 1917w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web_-300x153.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web_-1024x522.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web_-768x391.png 768w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web_-1536x783.png 1536w" sizes="auto, (max-width: 1917px) 100vw, 1917px" /></div>
<h3>Bước 2: Khởi tạo website</h3>
<p>Chúng ta chọn dấu + màu xanh ở góc phải để thêm website mới.</p>
<div>
<div class="wp-block-image"></div>
<p>Sau khi chọn vào nút thêm website chúng ta bắt đầu điền tên miền và bấm Next.</p>
<div class="wp-block-image"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5931" src="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1.png" alt="" width="1899" height="947" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1.png 1899w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-300x150.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-1024x511.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-768x383.png 768w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1-1536x766.png 1536w" sizes="auto, (max-width: 1899px) 100vw, 1899px" /></div>
<div>
<p>Ở bước <code>Configuration</code> chúng ta sẽ cấu hình phiên bản PHP, PHP mode và thông tin database sẽ tạo. Nếu bạn nào chưa có phiên bản PHP mới thì nên tham khảo bài hướng dẫn sau.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5932" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web2_.png" alt="" width="1077" height="649" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web2_.png 1077w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web2_-300x181.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web2_-1024x617.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web2_-768x463.png 768w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web2_-780x470.png 780w" sizes="auto, (max-width: 1077px) 100vw, 1077px" /></p>
<p>Các bạn nhớ nút hỗ trợ PHP phải luôn luôn bật, nếu không bật thì bạn đưa mã nguồn lên nó sẽ không chạy được.</p>
<p>Ở đây mình chọn PHP mode là <strong>PHP-FPM</strong> và chọn PHP versions là <strong>php7.4</strong> vì trước đó mình có cài phiên bản php này rồi. Chọn <strong>Save</strong> để lưu lại và tiến hành cấu hình thông tin database.</p>
<div class="wp-block-image"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5933" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web4_.png" alt="" width="504" height="945" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web4_.png 504w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web4_-160x300.png 160w" sizes="auto, (max-width: 504px) 100vw, 504px" /></div>
<div>
<p>Ở đây bạn có thể thấy hệ thống tự động tạo thông tin như:</p>
<ul>
<li>Tên Database</li>
<li>Người dùng có quyền truy cập Database đó.</li>
<li>Mật khẩu người dùng có quyền truy cập Database đó.</li>
</ul>
<p>Ở bước 3 <code>Backups</code> chúng ta sẽ chưa cấu hình backup và có thể cấu hình thiết đặt sau chức năng này. Tiếp tục chọn Next để bỏ qua bước 3.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5934" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web5_.png" alt="" width="1089" height="513" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web5_.png 1089w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web5_-300x141.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web5_-1024x482.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web5_-768x362.png 768w" sizes="auto, (max-width: 1089px) 100vw, 1089px" /></p>
<p>Tại bước cuối cùng này mọi thông tin cài đặt, cấu hình sẽ được hiển thị để bạn có thể lưu lại. Ngoài ra bạn còn có cả thông tin người dùng được tạo ra để quản trị cho riêng website này.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5935" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web6_.png" alt="" width="987" height="1021" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web6_.png 987w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web6_-290x300.png 290w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web6_-768x794.png 768w" sizes="auto, (max-width: 987px) 100vw, 987px" /></p>
<p>Tại bước này chúng ta sẽ có rất nhiều thông tin như thông tin database được tạo (1), thông tin FTP (2), thông tin quản trị gói hosting website này (3). Nhưng cái nút chúng ta cần nhất ở đây là cài đặt WordPress (4). Nhấp vào nút này và chọn thông tin quản trị admin website WordPress như hình bên dưới và chọn <strong>Install WordPress</strong> để cài đặt WordPress.</p>
<div class="wp-block-image"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5936" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web7_.png" alt="" width="502" height="585" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web7_.png 502w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web7_-257x300.png 257w" sizes="auto, (max-width: 502px) 100vw, 502px" /></div>
<div>Quá trình cài đặt diễn ra trong vài giây và có thể truy cập website.</div>
<div></div>
<div><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5937" src="https://help.tenten.vn/wp-content/uploads/2021/12/create.web8_.png" alt="" width="750" height="238" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/create.web8_.png 750w, https://help.tenten.vn/wp-content/uploads/2021/12/create.web8_-300x95.png 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></div>
<div>
<h2>III. Tổng kết</h2>
<p>Qua bài viết này chúng ta đã nắm được cách để tạo website cài đặt WordPress lên FastPanel. Cũng như thao tác cơ bản để tạo thêm một website trên giao diện FastPanel.</p>
<p>Chúc các bạn thực hiện thành công.</p>
</div>
</div>
</div>
</div>
<div class="bs-shortcode-alert alert alert-warning" style="text-align: center;"><span style="color: #000000;">Đừng quên đăng ký tên miền cho website của bạn nhé! Hiện tại, Tenten đang có chương trình mua tên miền<strong> .VN chỉ từ 270k: giảm 100% phí dịch vụ + tặng 1 năm sử dụng email theo tên miền riêng + tặng .shop trị giá 890k<br />
<a class="btn btn-default btn-sm" href="https://tenten.vn/ten-mien/khuyen-mai-vn-2022?code=WduVRLYljBAGNMye&amp;idCampaign=2038" target="_blank" rel="noopener">Nhận ưu đãi ngay</a></strong></span></div>
<p>Bài viết <a href="https://help.tenten.vn/huong-dan-tao-website-va-cai-dat-wordpress-tren-fastpanel/">Hướng dẫn tạo website và cài đặt WordPress trên FastPanel</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hướng dẫn cài đặt FastPanel</title>
		<link>https://help.tenten.vn/huong-dan-cai-dat-fastpanel/</link>
		
		<dc:creator><![CDATA[Trần Hiếu]]></dc:creator>
		<pubDate>Tue, 14 Dec 2021 07:37:47 +0000</pubDate>
				<category><![CDATA[FastPanel]]></category>
		<category><![CDATA[Cài đặt FastPanel]]></category>
		<guid isPermaLink="false">https://help.tenten.vn/?p=5919</guid>

					<description><![CDATA[<p>Fastpanel là gì? FastPanel hiện là một trong những phần mềm quản lý máy chủ phổ biến nhất hiện nay. Nó tương tự như cPanel hoặc DirectAdmin. Tuy nhiên, nó rất đơn giản nên chạy nhanh hơn nhiều so với các phần mềm quản lý máy chủ khác và đặc biệt là nó hoàn toàn &#8230;</p>
<p>Bài viết <a href="https://help.tenten.vn/huong-dan-cai-dat-fastpanel/">Hướng dẫn cài đặt FastPanel</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 id="h-fastpanel-l-g"><span id="fastpanel-la-gi">Fastpanel là gì?</span></h2>
<p>FastPanel hiện là một trong những phần mềm quản lý máy chủ phổ biến nhất hiện nay. Nó tương tự như cPanel hoặc DirectAdmin. Tuy nhiên, nó rất đơn giản nên chạy nhanh hơn nhiều so với các phần mềm quản lý máy chủ khác và đặc biệt là nó hoàn toàn miễn phí.</p>
<h2>Fastpanel có những tính năng gì?</h2>
<p>Fastpanel có đầy đủ tính năng của hosting quản lý phần mềm. Bao gồm:</p>
<ul>
<li>Domain management</li>
<li>Filemanager</li>
<li>Database management</li>
<li>Backup</li>
<li>Free Let’s Encrypt SSL certificate</li>
<li>VPS tracking statistics,</li>
<li>Emails</li>
<li>FTP and SFTP</li>
<li>Apache &amp; NginX</li>
<li>Multi PHP</li>
<li>Virus Scanner AI-BOLIT</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5920 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel_.png" alt="FastPanel" width="1218" height="566" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel_.png 1218w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel_-300x139.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel_-1024x476.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel_-768x357.png 768w" sizes="auto, (max-width: 1218px) 100vw, 1218px" /></p>
<h2>Chuẩn bị cài đặt Fastpanel</h2>
<p>Các bước chuẩn bị. Trước khi cài đặt, bạn cần chuẩn bị những điều sau:</p>
<ul>
<li>1 VPS mới hoàn toàn với một trong những hệ điều hành sau: Centos 7, Debian 8 9 10, Ubuntu 18.04 20.04, AlmaLinux 8 và Rocky 8. Trong bài này mình sẽ hướng dẫn trên Centos 7 x64</li>
<li>Phần mềm để login vào SSH như Putty, <a href="https://help.tenten.vn/ssh-huong-dan-ket-noi-bang-mobaxterm/">MobaXterm</a>,&#8230;</li>
</ul>
<p>Trước tiên, bạn cần truy cập trang chủ của FastPanel tại: https://fastpanel.direct/ để tạo tài khoản và đăng ký giấy phép. Hiện tại, FastPanel cho phép mọi người đăng ký giấy phép miễn phí lên đến 2038. Thật tuyệt phải không?</p>
<p>Sau khi đăng ký giấy phép qua email, bạn cần nhập email để kích hoạt giấy phép miễn phí ở bước cuối cùng.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5921 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel1_.png" alt="FastPanel" width="1173" height="113" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel1_.png 1173w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel1_-300x29.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel1_-1024x99.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel1_-768x74.png 768w" sizes="auto, (max-width: 1173px) 100vw, 1173px" /></p>
<h2>Cài đặt Faspanel</h2>
<p><em><strong>Bước 1:</strong> </em>Đăng nhập vào <a href="https://help.tenten.vn/ssh-huong-dan-ket-noi-bang-mobaxterm/">SSH</a></p>
<p><em><strong>Bước 2</strong></em>: Cập nhập hệ điều hành</p>
<p>Đối với Centos, AlmaLinux và Rocky:</p>
<div class="hcb_wrap">
<pre class="prism undefined-numbers lang-bash" data-lang="Bash"><code>yum update -y</code></pre>
</div>
<p>Đối với Debian và Ubuntu:</p>
<div class="hcb_wrap">
<pre class="prism undefined-numbers lang-bash" data-lang="Bash"><code>apt update 
apt upgrade -y</code></pre>
</div>
<p><em><strong>Bước 3:</strong></em> Chạy lệnh sau để bắt đầu cài đặt</p>
<pre class="lang:default decode:true">wget http://repo.fastpanel.direct/install_fastpanel.sh -O - | bash -</pre>
<p>Mặc định FastPanel sẽ sử dụng Mariadb 10.3 là dịch vụ lưu database, để sử dụng Mariadb mới hơn có thể sử dụng câu lệnh bên dưới:</p>
<pre class="lang:default decode:true ">wget http://repo.fastpanel.direct/install_fastpanel.sh
</pre>
<p>Kiểm tra các phiên bản Mariadb hiện có:</p>
<pre class="lang:default decode:true ">bash install_fastpanel.sh -h
Usage:  /tmp/22985_install_fastpanel.sh [-h|--help]
        /tmp/22985_install_fastpanel.sh [-f|--force] [-m|--mysql &lt;mysql_version&gt;]

Options:
    -h, --help             Print this help
    -f, --force            Skip check installed software (nginx, MySQL, apache2)
    -m, --mysql            Set MySQL version on fork for installation
            Available versions: default|mariadb10.3|mariadb10.4|mariadb10.5|mariadb10.6|mysql8.0|percona8.0</pre>
<p>Cài đặt FastPanel với Mariadb 10.5:</p>
<pre class="lang:default decode:true ">bash install_fastpanel.sh -m mariadb10.5</pre>
<p><em><strong>Bước 4:</strong> </em>Chờ đợi khoảng 10 phút. Sau đó thấy kết quả hiện ra như bên dưới có nghĩa là cài đặt thành công</p>
<p><em>Congratulations! FASTPANEL® successfully installed and available now for you at https://ip:8888</em></p>
<p><em>Login: fastuser</em></p>
<p><em>Password: password</em></p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-5922 size-full" src="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_.png" alt="FastPanel" width="1899" height="947" srcset="https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_.png 1899w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-300x150.png 300w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1024x511.png 1024w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-768x383.png 768w, https://help.tenten.vn/wp-content/uploads/2021/12/fast.panel2_-1536x766.png 1536w" sizes="auto, (max-width: 1899px) 100vw, 1899px" /></p>
<p>Sau khi có thông tin bạn đăng nhập và tạo trang web theo từng bước rất dễ dàng.</p>
<div class="tg_wrap_cbsv" style="margin: 20px 0px; border-radius: 4px; border: 2px solid #ff8300;">
<p><cite style="margin: 0px; background-color: #ff8300; color: #fff; border-top-left-radius: 2px; border-top-right-radius: 2px; font-size: 19px; padding: 12px 20px; font-weight: bold; display: block; font-style: normal;">DỊCH VỤ CLOUD SERVER TỐC ĐỘ XỬ LÝ VƯỢT TRỘI</cite></p>
<div class="textwidget" style="padding: 20px; background: #ffffff;">
<p><a href="https://tenten.vn/vi/cloud-vps?code=YMCGSVhgJsxDwOUk&amp;idCampaign=2528" target="_blank" rel="noopener"><img loading="lazy" decoding="async" class="aligncenter wp-image-11441 size-full" src="https://tenten.vn/tin-tuc/wp-content/uploads/2022/08/VPS.png" alt="" width="1364" height="528" /></a></p>
</div>
</div>
<h4>Bài liên quan</h4>
<ul>
<li class="post_title"><a href="https://tenten.vn/tin-tuc/tang-ngay-50k-khi-khach-hang-khi-dang-ky-tai-khoan-vps-moi/">Tặng ngay 50K khi khách hàng đăng ký tài khoản VPS mới</a></li>
<li class="post_title"><a href="https://tenten.vn/tin-tuc/bang-gia-thue-vps-cloud/">Bảng giá thuê VPS Cloud mới nhất</a></li>
<li class="post_title"><a href="https://tenten.vn/tin-tuc/huong-dan-su-dung-vps/">Hướng dẫn sử dụng VPS với 6 bước đơn giản cho người mới bắt đầu</a></li>
</ul>
<p>Bài viết <a href="https://help.tenten.vn/huong-dan-cai-dat-fastpanel/">Hướng dẫn cài đặt FastPanel</a> đã xuất hiện đầu tiên vào ngày <a href="https://help.tenten.vn">Hướng dẫn TENTEN</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
