You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
12 KiB

4 years ago
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>EEE.DOG</title>
<subtitle>呓喵酱の博客 - IoTcat&#39;s Blog</subtitle>
<link href="/atom.xml" rel="self"/>
<link href="https://www.eee.dog/"/>
<updated>2020-06-16T12:06:12.105Z</updated>
<id>https://www.eee.dog/</id>
<author>
<name>IoTcat</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>hello hexo</title>
<link href="https://www.eee.dog/tech/hello-hexo/"/>
<id>https://www.eee.dog/tech/hello-hexo/</id>
<published>2020-06-16T07:43:54.000Z</published>
<updated>2020-06-16T12:06:12.105Z</updated>
<content type="html"><![CDATA[<h2 id="神奇的事情"><a href="#神奇的事情" class="headerlink" title="神奇的事情"></a>神奇的事情</h2><p>神奇的事情开始发售了</p><p><img src="https://api.yimian.xyz/img" alt=""></p><figure class="highlight js"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><code class="hljs js"><span class="hljs-keyword">const</span> home = cooo;<br><br><span class="hljs-keyword">var</span> ee = <span class="hljs-number">1</span>;<br></code></pre></td></tr></table></figure>]]></content>
<summary type="html">
&lt;h2 id=&quot;神奇的事情&quot;&gt;&lt;a href=&quot;#神奇的事情&quot; class=&quot;headerlink&quot; title=&quot;神奇的事情&quot;&gt;&lt;/a&gt;神奇的事情&lt;/h2&gt;&lt;p&gt;神奇的事情开始发售了&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://api.yimian.xyz/img&quot; al
</summary>
</entry>
<entry>
<title>Build Nextcloud Server on Centos 7.5</title>
<link href="https://www.eee.dog/tech/build-nextcloud-server-on-centos7/"/>
<id>https://www.eee.dog/tech/build-nextcloud-server-on-centos7/</id>
<published>2020-06-16T07:43:54.000Z</published>
<updated>2020-06-16T09:46:10.174Z</updated>
<content type="html"><![CDATA[<p>Nextcloud is an open-source software project coded with PHP. It had provided a ideal private cloud-storage solution which was considered to be reliable and stable. This blog aims to present a Nextcloud Building instruction step by step for the purpose of helping freshman and future reviewing. Nextcloud is an open-source software project coded with PHP. It had provided a ideal private cloud-storage solution which was considered to be reliable and stable. This blog aims to present a Nextcloud Building instruction step by step for the purpose of helping freshman and future reviewing. Nextcloud is an open-source software project coded with PHP. It had provided a ideal private cloud-storage solution which was considered to be reliable and stable. This blog aims to present a Nextcloud Building instruction step by step for the purpose of helping freshman and future reviewing.</p><a id="more"></a><h2 id="Change-linux-core-to-BBR-vision"><a href="#Change-linux-core-to-BBR-vision" class="headerlink" title="Change linux core to BBR vision"></a>Change linux core to BBR vision</h2><p>If your server is a new one, it is strongly recommended to update it to an upper version supporting bbr mode, which is a senior centos system core provide by google and it could make your server more efficient.</p><p>Firstly download and install bbr core from github.</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ wget -N --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh &amp;&amp;\<br>$ chmod +x bbr.sh &amp;&amp; \<br>$ bash bbr.sh<br></code></pre></td></tr></table></figure><p>Use the code to check the core version. If it’s large than 4.9.0 it’s OK.</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ uname -r<br></code></pre></td></tr></table></figure><p>Expected return:net.ipv4.tcp_available_congestion_control = bbr cubic reno</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ sysctl net.ipv4.tcp_available_congestion_control<br></code></pre></td></tr></table></figure><p>Expected return: net.ipv4.tcp_congestion_control = bbr</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ sysctl net.ipv4.tcp_congestion_control<br></code></pre></td></tr></table></figure><p>Expected return: net.core.default_qdisc = fq</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ sysctl net.core.default_qdisc<br></code></pre></td></tr></table></figure><p>Expected return: xxxxxxxx tcp_bbr</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ lsmod | grep bbr<br></code></pre></td></tr></table></figure><h2 id="Install-Nginx-Service"><a href="#Install-Nginx-Service" class="headerlink" title="Install Nginx Service"></a>Install Nginx Service</h2><p>Pull nginx package from nginx orginzation website.</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm<br></code></pre></td></tr></table></figure><p>Install Nginx.</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><code class="hljs bash">$ yum install -y nginx<br></code></pre></td></tr></table></figure><p>Start nginx service.</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><spa
<summary type="html">
&lt;p&gt;Nextcloud is an open-source software project coded with PHP. It had provided a ideal private cloud-storage solution which was considered to be reliable and stable. This blog aims to present a Nextcloud Building instruction step by step for the purpose of helping freshman and future reviewing. Nextcloud is an open-source software project coded with PHP. It had provided a ideal private cloud-storage solution which was considered to be reliable and stable. This blog aims to present a Nextcloud Building instruction step by step for the purpose of helping freshman and future reviewing. Nextcloud is an open-source software project coded with PHP. It had provided a ideal private cloud-storage solution which was considered to be reliable and stable. This blog aims to present a Nextcloud Building instruction step by step for the purpose of helping freshman and future reviewing.&lt;/p&gt;
</summary>
<category term="tech" scheme="https://www.eee.dog/categories/tech/"/>
<category term="docker" scheme="https://www.eee.dog/tags/docker/"/>
<category term="php" scheme="https://www.eee.dog/tags/php/"/>
<category term="nginx" scheme="https://www.eee.dog/tags/nginx/"/>
</entry>
</feed>