<?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>Server Management &#8211; Adarsh Awasthi</title>
	<atom:link href="https://www.adarshawasthi.com/server-management/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.adarshawasthi.com</link>
	<description></description>
	<lastBuildDate>Wed, 12 Jun 2024 11:08:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.adarshawasthi.com/wp-content/uploads/2023/04/cropped-logo-32x32.png</url>
	<title>Server Management &#8211; Adarsh Awasthi</title>
	<link>https://www.adarshawasthi.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Install Virtualmin on Ubuntu Server</title>
		<link>https://www.adarshawasthi.com/install-virtualmin-on-ubuntu-server/</link>
					<comments>https://www.adarshawasthi.com/install-virtualmin-on-ubuntu-server/#respond</comments>
		
		<dc:creator><![CDATA[Adarsh Awasthi]]></dc:creator>
		<pubDate>Fri, 17 Nov 2023 12:04:00 +0000</pubDate>
				<category><![CDATA[Server Management]]></category>
		<guid isPermaLink="false">https://www.adarshawasthi.com/?p=2136</guid>

					<description><![CDATA[Virtualmin is an open-source control panel for managing websites on web servers. Here I have provided you steps to install Virtualmin on ubuntu server. If you are using root user to install the Virtualmin control panel, then it is recommended to create a new a user with sudo access to install Virtualmin due to security [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Virtualmin is an open-source control panel for managing websites on web servers. Here I have provided you steps to install Virtualmin on ubuntu server.</p>



<p class="wp-block-paragraph">If you are using root user to install the Virtualmin control panel, then it is recommended to create a new a user with sudo access to install Virtualmin due to security reasons.</p>



<p class="wp-block-paragraph">If you are not sure how to create a new user on ubuntu server and assign sudo access to this user, you can read this article to know <a href="https://www.adarshawasthi.com/create-new-user-on-ubuntu-grant-sudo-access/" data-type="post" data-id="2142">how to create new user on ubuntu and grant sudo access</a>.</p>



<p class="wp-block-paragraph">Let&#8217;s begin &#8211; update the packages first</p>



<pre class="wp-block-code"><code>Sudo apt update</code></pre>



<h2 class="wp-block-heading">Installing Virtualmin On Ubuntu Server</h2>



<p class="wp-block-paragraph">The easiest way to get the install script onto your server, is to login to your server and use&nbsp;<code>wget</code>&nbsp;or&nbsp;<code>curl</code>.</p>



<pre class="wp-block-code"><code>wget https://software.virtualmin.com/gpl/scripts/virtualmin-install.sh</code></pre>



<h2 class="wp-block-heading"><strong>Run the Install Script and Configure Virtualmin:</strong><strong></strong></h2>



<p class="wp-block-paragraph">Execute the downloaded install script using a command like the following: </p>



<pre class="wp-block-code"><code>sudo sh virtualmin-install.sh</code></pre>



<p class="wp-block-paragraph">After a few minutes, your system should have everything it needs to provide a full-featured virtual web hosting environment!</p>



<p class="wp-block-paragraph">Now login to Virtualmin by browsing to port 10000 on the address of your server using the HTTPS protocol.</p>



<p class="wp-block-paragraph">Ignore the SSL certificate validation error (the SSL certificate is a self-signed one after initial installation but can be replaced with a valid certificate after initial configuration is complete).</p>



<p class="wp-block-paragraph">Follow the steps in the post-install wizard to setup Virtualmin to suit your environment and needs. Virtualmin will check the configuration of the system and validate some server settings to ensure your system is ready for service.</p>



<p class="wp-block-paragraph">Click&nbsp;Create Virtual Server&nbsp;to start making your first website in Virtualmin!</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.adarshawasthi.com/install-virtualmin-on-ubuntu-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install LAMP Stack On Ubuntu</title>
		<link>https://www.adarshawasthi.com/install-lamp-stack-on-ubuntu/</link>
					<comments>https://www.adarshawasthi.com/install-lamp-stack-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[Adarsh Awasthi]]></dc:creator>
		<pubDate>Fri, 17 Nov 2023 11:48:55 +0000</pubDate>
				<category><![CDATA[Server Management]]></category>
		<guid isPermaLink="false">https://www.adarshawasthi.com/?p=2119</guid>

					<description><![CDATA[In this article, we will install LAMP i.e. Linux, Apache, MySQL, and PHP on ubuntu server. #1. Installing Apache and allowing it through the firewall We can use following steps: Step 1: After the command ask to your password … then you enter your password. Step 2: Let’s allow Apache through the firewall using the [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In this article, we will install LAMP i.e. Linux, Apache, MySQL, and PHP on ubuntu server.</p>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#1. Installing Apache and allowing it through the firewall</span></h2>



<p class="wp-block-paragraph">We can use following steps:</p>



<h3 class="wp-block-heading">Step 1: </h3>



<pre class="wp-block-code"><code>sudo apt update</code></pre>



<p class="wp-block-paragraph">After the command ask to your password … then you enter your password.</p>



<h3 class="wp-block-heading">Step 2:</h3>



<pre class="wp-block-code"><code>sudo apt install apache2</code></pre>



<p class="wp-block-paragraph">Let’s allow Apache through the firewall using the following command</p>



<h3 class="wp-block-heading">Step 3:</h3>



<pre class="wp-block-code"><code>sudo ufw allow in “Apache Full”</code></pre>



<p class="wp-block-paragraph">If we want to check status, then use this command</p>



<h3 class="wp-block-heading">Step 4:</h3>



<pre class="wp-block-code"><code>sudo ufw status</code></pre>



<p class="wp-block-paragraph">You can now go to the server URL (IP Address) and the apache2 default page will be displayed on the Screen.</p>



<h3 class="wp-block-heading">Step 5:</h3>



<p class="wp-block-paragraph">You can go to the Firewall.</p>



<p class="wp-block-paragraph">Enter the URL is</p>



<pre class="wp-block-code"><code>localhost</code></pre>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#2. Installing MySQL on Ubuntu:</span></h2>



<p class="wp-block-paragraph">We can run the command to install the MySQL is:</p>



<p class="wp-block-paragraph">We can use following steps:</p>



<h3 class="wp-block-heading">Step 1:</h3>



<pre class="wp-block-code"><code><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong>sudo apt install mysql-server -y</code></pre>



<p class="wp-block-paragraph">After installation is completed, then you can run the command for entering the mysql is:</p>



<h3 class="wp-block-heading">Step 2:</h3>



<pre class="wp-block-code"><code>       sudo mysql</code></pre>



<p class="wp-block-paragraph">If you want to exit from the mysql then enter the command is:</p>



<h3 class="wp-block-heading">Step 3:</h3>



<pre class="wp-block-code"><code>       exit</code></pre>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#3. Installing PHP on Ubuntu:</span></h2>



<p class="wp-block-paragraph">We can run the command to install the PHP is:</p>



<h3 class="wp-block-heading">Step 1:</h3>



<pre class="wp-block-code"><code>     sudo apt install php libapache2-mod-php php-mysql -y</code></pre>



<p class="wp-block-paragraph">If we want to check the version of PHP, then we can enter the command is:</p>



<h3 class="wp-block-heading">Step 2:</h3>



<pre class="wp-block-code"><code>     php -v</code></pre>



<p class="wp-block-paragraph">If we want to change any content from the any file, then we can use the:</p>



<h3 class="wp-block-heading">Step 3:</h3>



<pre class="wp-block-code"><code>     sudo nano filename</code></pre>



<p class="wp-block-paragraph">Installation is complete for the LAMP.</p>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#4. Installing phpMyAdmin</span></h2>



<h3 class="wp-block-heading">Step 1:</h3>



<pre class="wp-block-code"><code>     sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl</code></pre>



<p class="wp-block-paragraph">Configuring MySQL to use a password </p>



<h3 class="wp-block-heading">Step 2:</h3>



<pre class="wp-block-code"><code>     sudo mysql -u root -p</code></pre>



<p class="wp-block-paragraph">If we not set the password on MySQL then, we automatic enter the MySQL using this command.</p>



<pre class="wp-block-code"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sudo mysql</code></pre>



<p class="wp-block-paragraph">After this command we create a user by using this command:</p>



<h3 class="wp-block-heading">Step 3:</h3>



<pre class="wp-block-code"><code> CREATE USER 'username'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password123';</code></pre>



<p class="wp-block-paragraph">If our user create is successfully then, we can use this command for grant all privileges to the username:</p>



<h3 class="wp-block-heading">Step 4:</h3>



<pre class="wp-block-code"><code>GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT OPTION;</code></pre>



<p class="wp-block-paragraph">And all the process are completed then, we can exit with using by this command is:</p>



<h3 class="wp-block-heading">Step 5:</h3>



<pre class="wp-block-code"><code>exit</code></pre>



<p class="wp-block-paragraph"><strong>Check the installation:</strong><strong></strong></p>



<pre class="wp-block-code"><code>sudo service apache2 restart</code></pre>



<p class="wp-block-paragraph"><strong><span style="text-decoration: underline;">Note:</span></strong> If all the process are completed, and we get the issue for login page, then we can change the php version from the configuration file.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.adarshawasthi.com/install-lamp-stack-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create New User on Ubuntu Server and Grant Sudo Access?</title>
		<link>https://www.adarshawasthi.com/create-new-user-on-ubuntu-grant-sudo-access/</link>
					<comments>https://www.adarshawasthi.com/create-new-user-on-ubuntu-grant-sudo-access/#respond</comments>
		
		<dc:creator><![CDATA[Adarsh Awasthi]]></dc:creator>
		<pubDate>Fri, 17 Nov 2023 11:37:03 +0000</pubDate>
				<category><![CDATA[Server Management]]></category>
		<guid isPermaLink="false">https://www.adarshawasthi.com/?p=2142</guid>

					<description><![CDATA[For managing servers, it is not recommended to use root user account due to security reasons. So you can follow this quick guide to add a new user in your ubuntu server and grant sudo access so that you can run any command like authorized sudo user. Step 1: Switch to root user Step 2: [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">For managing servers, it is not recommended to use root user account due to security reasons. </p>



<p class="wp-block-paragraph">So you can follow this quick guide to add a new user in your ubuntu server and grant sudo access so that you can run any command like authorized sudo user.</p>



<h2 class="wp-block-heading">Step 1: Switch to root user</h2>



<pre class="wp-block-code"><code>sudo su</code></pre>



<h2 class="wp-block-heading">Step 2: Create a new user on Ubuntu</h2>



<p class="wp-block-paragraph">Create a new user using following command and provide required information or you can choose press ENTER button to use default information for Full Name, Room Number, Work Phone, Home Phone &amp; Other etc.</p>



<p class="wp-block-paragraph">(Example: let&#8217;s assume we want to create a new user named <strong>&#8220;adarsh&#8221;</strong>. You can choose whatever username you prefer)</p>



<pre class="wp-block-code"><code>adduser adarsh</code></pre>



<p class="wp-block-paragraph">Now in order to switch to newly created user, you can enter following command. </p>



<p class="wp-block-paragraph">In my case new user created is <strong>adarsh</strong>, so I will use it. You need to modify this according to the new user that you created for yourself.</p>



<pre class="wp-block-code"><code>su adarsh</code></pre>



<p class="wp-block-paragraph">Now if you run any command with sudo for example like following command, you get an error like &#8211; <strong>&#8220;User is not in sudoers file.&#8221;</strong></p>



<pre class="wp-block-code"><code>sudo apt-get update</code></pre>



<p class="wp-block-paragraph">That means we need to give sudo access to this newly created user to run any command with sudo privileges.</p>



<h2 class="wp-block-heading">Step 3: Grant sudo access to the new user account</h2>



<p class="wp-block-paragraph">Before granting sudo access to new user, we need to switch to root user first. So enter following command</p>



<pre class="wp-block-code"><code>sudo su</code></pre>



<p class="wp-block-paragraph">Now run in order to edit the sudoers file, run following command</p>



<pre class="wp-block-code"><code>sudo visudo</code></pre>



<p class="wp-block-paragraph">Sudoer file will be opened. Now go to the section in this file that says &#8211; <strong>&#8220;Allow members of group sudo to execute any command&#8221;</strong>. </p>



<p class="wp-block-paragraph">Here after the line <strong>%sudo ALL=(ALL:ALL) ALL</strong></p>



<p class="wp-block-paragraph">Write the same line just after it, and then replace the <strong>&#8220;sudo&#8221;</strong> word with your new user. </p>



<p class="wp-block-paragraph">In my case, it is <strong>adarsh</strong>. So my new file looks something like below.</p>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="891" height="564" src="https://www.adarshawasthi.com/wp-content/uploads/2023/11/grant-sudo-access-to-a-user-on-ubuntu.jpg" alt="grant sudo access to a user on ubuntu" class="wp-image-2148" title="grant sudo access to a user on ubuntu" srcset="https://www.adarshawasthi.com/wp-content/uploads/2023/11/grant-sudo-access-to-a-user-on-ubuntu.jpg 891w, https://www.adarshawasthi.com/wp-content/uploads/2023/11/grant-sudo-access-to-a-user-on-ubuntu-300x190.jpg 300w, https://www.adarshawasthi.com/wp-content/uploads/2023/11/grant-sudo-access-to-a-user-on-ubuntu-768x486.jpg 768w" sizes="(max-width: 891px) 100vw, 891px" /></figure>



<p class="wp-block-paragraph">Now save and exit from this file by pressing CTRL+X and confirming onscreen instructions. </p>



<p class="wp-block-paragraph">That&#8217;s it. Now the newly created user has been added in the sudoers file.</p>



<p class="wp-block-paragraph">To confirm it, switch to the new user account using following command</p>



<pre class="wp-block-code"><code>sudo adarsh</code></pre>



<p class="wp-block-paragraph">They try again this update command like following</p>



<pre class="wp-block-code"><code> sudo apt-get update</code></pre>



<p class="wp-block-paragraph">Now you&#8217;ll see no error shows like before and by providing the password of new user you can run any command with sudo access.</p>



<p class="wp-block-paragraph">Thanks for reading this article&#8230; have a good day!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.adarshawasthi.com/create-new-user-on-ubuntu-grant-sudo-access/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install LEMP Stack On Ubuntu</title>
		<link>https://www.adarshawasthi.com/install-lemp-stack-on-ubuntu/</link>
					<comments>https://www.adarshawasthi.com/install-lemp-stack-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[Adarsh Awasthi]]></dc:creator>
		<pubDate>Fri, 17 Nov 2023 08:47:53 +0000</pubDate>
				<category><![CDATA[Server Management]]></category>
		<guid isPermaLink="false">https://www.adarshawasthi.com/?p=2126</guid>

					<description><![CDATA[As we know that LEMP stands for Linux, Nginx, MySQL &#38; PHP. In this article, I have given the steps that you can follow to install the LEMP stack on ubuntu server. #1. Installing Nginx on Ubuntu and allowing it through the firewall We can use following steps: Step 1: Update the packages first Enter [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">As we know that LEMP stands for <strong>Linux, Nginx, MySQL &amp; PHP</strong>. In this article, I have given the steps that you can follow to install the LEMP stack on ubuntu server.</p>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#1. Installing Nginx on Ubuntu and allowing it through the firewall</span></h2>



<p class="wp-block-paragraph">We can use following steps:</p>



<h3 class="wp-block-heading">Step 1: Update the packages first</h3>



<p class="wp-block-paragraph">Enter the command on the terminal:</p>



<pre class="wp-block-code"><code>      sudo apt update</code></pre>



<p class="wp-block-paragraph">After the command ask to your password … then you enter your password and then use this command is:</p>



<h3 class="wp-block-heading">Step 2: Command for Installing Nginx:</h3>



<pre class="wp-block-code"><code>      sudo apt install Nginx</code></pre>



<h3 class="wp-block-heading">Step 3: Allow Nginx through the firewall</h3>



<pre class="wp-block-code"><code>      sudo ufw app list</code></pre>



<pre class="wp-block-code"><code>      sudo ufw allow in ‘Nginx Full’</code></pre>



<p class="wp-block-paragraph">If we want to check status, then use this command:</p>



<h3 class="wp-block-heading">Step 4: Check Firewall Status</h3>



<pre class="wp-block-code"><code>      sudo ufw status</code></pre>



<p class="wp-block-paragraph">You can now go to the server URL (IP Address) and the Nginx default page will be displayed on the Screen.</p>



<h3 class="wp-block-heading">Step 5: Check the default page on localhost</h3>



<p class="wp-block-paragraph">Go to the browser and type &#8216;http://your_domain_or_IP/localhost&#8217; in your URL bar.</p>



<pre class="wp-block-code"><code>      localhost</code></pre>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#2. Installing MySQL on Ubuntu</span></h2>



<p class="wp-block-paragraph">We can run the command to install the MySQL is:</p>



<h3 class="wp-block-heading">Step 1: Install MySQL</h3>



<pre class="wp-block-code"><code><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong>sudo apt install mysql-server -y</code></pre>



<p class="wp-block-paragraph">After installation is completed, then you can run the command for entering the mysql is:</p>



<h3 class="wp-block-heading">Step 2: Enter in MySQL</h3>



<pre class="wp-block-code"><code>      sudo mysql</code></pre>



<p class="wp-block-paragraph">If you want to exit from the MySQL then enter the command is:</p>



<h3 class="wp-block-heading">Step 3: Exit from MySQL</h3>



<pre class="wp-block-code"><code>&nbsp;&nbsp;&nbsp;&nbsp;  exit</code></pre>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#3. Installing PHP on Ubuntu</span></h2>



<p class="wp-block-paragraph">We can run the command to install the PHP is:</p>



<h3 class="wp-block-heading">Step 1: Install PHP</h3>



<pre class="wp-block-code"><code>      sudo apt install php-fpm php-mysql</code></pre>



<p class="wp-block-paragraph">If we want to check the version of PHP, then we can enter the command is:</p>



<h3 class="wp-block-heading">Step 2: Check the PHP version</h3>



<pre class="wp-block-code"><code>      php -v</code></pre>



<p class="wp-block-paragraph">If you want to host a PHP website, you will have to copy your files to:</p>



<h3 class="wp-block-heading">Step 3: Upload website files to following path</h3>



<pre class="wp-block-code"><code>&nbsp; &nbsp;&nbsp;  cd /var/www/html</code></pre>



<h3 class="wp-block-heading">Step 4: Nginx website configuration file location</h3>



<pre class="wp-block-code"><code>      sudo nano /etc/nginx/site-available/default</code></pre>



<p class="wp-block-paragraph">If we want to change any content from the any file, then we can use the:</p>



<h3 class="wp-block-heading">Step 5: Updating Nginx website configuration file</h3>



<pre class="wp-block-code"><code>      sudo nano filename</code></pre>



<p class="wp-block-paragraph">Installation is complete for the LEMP.</p>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#4. Installing phpMyAdmin</span></h2>



<pre class="wp-block-code"><code>      sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl</code></pre>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#5. Configuring MySQL to use a password</span></h2>



<h3 class="wp-block-heading">Step 1: Check the MySQL user password status</h3>



<p class="wp-block-paragraph">If we set the password on MySQL then we can use this command:</p>



<pre class="wp-block-code"><code>      sudo mysql -u root -p</code></pre>



<p class="wp-block-paragraph">If we not set the password on MySQL then, we automatic enter the MySQL using this command:</p>



<pre class="wp-block-code"><code>&nbsp;&nbsp;&nbsp;&nbsp;  sudo mysql</code></pre>



<p class="wp-block-paragraph">After this command we create a user by using this command:</p>



<h3 class="wp-block-heading">Step 2: Create a new user for MySQL database</h3>



<pre class="wp-block-code"><code>      CREATE USER 'username'@'localhost' IDENTIFIED WITHcaching_sha2_password BY 'password123';</code></pre>



<p class="wp-block-paragraph">If our user create is successfully then, we can use this command for grant all privileges to the username:</p>



<h3 class="wp-block-heading">Step 3: Grant access to database to this new user</h3>



<pre class="wp-block-code"><code>      GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT OPTION;</code></pre>



<p class="wp-block-paragraph">And all the process are completed then, we can exit with using by this command is:</p>



<h3 class="wp-block-heading">Step 4: Exit MySQL </h3>



<pre class="wp-block-code"><code>      exit</code></pre>



<h3 class="wp-block-heading">Step 5: Login with new username &amp; password that you set</h3>



<p class="wp-block-paragraph">Go to the browser and type &#8216;http://your_domain_or_IP/phpmyadmin&#8217; in your URL bar. You will see an option to log into your PHPMyAdmin console.</p>



<pre class="wp-block-code"><code>      localhost</code></pre>



<h2 class="wp-block-heading has-text-align-center"><span style="text-decoration: underline;">#6. Create a symlink</span></h2>



<pre class="wp-block-code"><code>      sudo ln -s /usr/share/phpmyadmin /var/www/html/phpMyAdmin</code></pre>



<p class="wp-block-paragraph"><strong>Check the installation:</strong><strong></strong></p>



<pre class="wp-block-code"><code>      sudo service nginx restart</code></pre>



<p class="wp-block-paragraph"><strong><span style="text-decoration: underline;">Note:</span></strong> If all the process are completed, and we get the issue for login page, then we can change the php version from the configuration file.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.adarshawasthi.com/install-lemp-stack-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
