<?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>uvdesk Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/uvdesk/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 15 Dec 2020 16:18:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>How to install UVDesk on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-uvdesk-ubuntu/</link>
					<comments>https://www.osradar.com/install-uvdesk-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 16 Dec 2020 04:17:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[uvdesk]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=26796</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install UVDesk on Ubuntu 20.04. UVdesk offers SaaS-based and Open Source helpdesk solution to easier the overall support process to deliver best customer service. All this information can be found on the project&#8217;s website. Install UDVesk on Ubuntu 20.04 1.- Install some required packages Before [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-uvdesk-ubuntu/">How to install UVDesk on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>Hello, friends. In this post, you will learn how to install UVDesk on Ubuntu 20.04.</strong></p>



<p><a href="https://www.uvdesk.com/en/" target="_blank" rel="noreferrer noopener">UVdesk</a> offers SaaS-based and Open Source helpdesk solution to easier the overall support process to deliver best customer service. All this information can be found on the project&#8217;s website.</p>



<h2>Install UDVesk on Ubuntu 20.04</h2>



<h3>1.- Install some required packages</h3>



<p>Before starting the whole installation process we have to install some necessary packages.</p>



<p>To do this, open a terminal or start an SSH session on your server and run:</p>



<pre class="wp-block-preformatted">sudo apt update<br>sudo apt upgrade</pre>



<p>Then it installs the necessary packages I referred to. Among them, <a href="https://www.osradar.com/install-git-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">GIT</a>, Apache, and some modules of the latter.</p>



<pre class="wp-block-preformatted">sudo apt install git unzip apache2 libapache2-mod-fcgid</pre>



<p>Then enable the Apache modules needed to perform the installation.</p>



<pre class="wp-block-preformatted">sudo a2enmod actions fcgid alias proxy_fcgi rewrite</pre>



<p>And apply the changes by restarting Apache.</p>



<pre class="wp-block-preformatted">sudo systemctl restart apache2</pre>



<h3>2.- Preparing MariaDB for UVDesk</h3>



<p>The next step is to install and configure correctly MariaDB, for this we have a post where it is explained in detail</p>



<p><a href="https://www.osradar.com/install-mariadb-10-5-ubuntu-20-04-18-04/" target="_blank" rel="noreferrer noopener">How To Install MariaDB on Ubuntu 20.04?</a></p>



<p>After MariaDB is installed and configured, you have to create the database and the user so that UVDesk can work with it.</p>



<p>Open the MariaDB shell:</p>



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



<p>And then create the database, as well as the user with their permissions.</p>



<pre class="wp-block-preformatted">sudo mysql -u root -p<br>CREATE YOUR DATABASE uvdeskdb;<br>GRANT ALL PRIVILEGES ON uvdeskdb . * TO 'uvuser'@'localhost' IDENTIFIED BY 'uvpps';<br>FLUSH PRIVILEGES;<br>exit;</pre>



<p>So, now we can continue.</p>



<h3>3.- Install and configure PHP for UVDesk</h3>



<p>Now the next step is to install PHP along with some of its modules:</p>



<pre class="wp-block-preformatted">sudo apt install php-cli php-fpm php-pdo php-json php-common php-mysql php-zip php-gd php-mbstring php-curl php-xml php-bcmath php-imap php-intl php-mailparse php-pear</pre>



<p>And it is advisable to make some changes in the configuration of PHP to adapt it to UVDesk.</p>



<p>Open the PHP configuration file</p>



<pre class="wp-block-preformatted">sudo nano /etc/php/7.4/fpm/php.ini</pre>



<p>And with the help of the key combination <strong>CTRL + W</strong> look for the parameter <code>memory_limit</code> and assign another higher value to it.</p>



<pre class="wp-block-preformatted">memory_limit = 256M</pre>



<p>You can also change the Timezone of PHP to your location.</p>



<p>Save the changes and close the editor.</p>



<h2>4.- Install UVDesk on Ubuntu 20.04</h2>



<p>The installation of UVDesk is through Composer, so we have to install it first.</p>



<p>Download it with the curl command:</p>



<pre class="wp-block-preformatted">curl -sS https://getcomposer.org/installer -o composer-setup.php</pre>



<p>And then install it with this command:</p>



<pre class="wp-block-preformatted">sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer --version=1.10.17</pre>



<p>You can check the status of Composer, by running</p>



<pre class="wp-block-preformatted">composer -V</pre>



<p>Now it&#8217;s time to create the folder where UVDesk will be and assign it as the owner of the current user:</p>



<pre class="wp-block-preformatted">sudo mkdir /var/www/udvesk<br>sudo chown -R $USER:$USER /var/www/</pre>



<p>And now start the installation with Composer from the created folder.</p>



<pre class="wp-block-preformatted">cd /var/www/udvesk<br>composer clear-cache<br>composer create-project uvdesk/community-skeleton helpdesk-project</pre>



<p>If the whole process has gone well, you will see a screen output similar to this one:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="564" src="https://www.osradar.com/wp-content/uploads/2020/12/1-5-1024x564.png" alt="1.- Install UVDesk on Ubuntu 20.04" class="wp-image-26797" srcset="https://www.osradar.com/wp-content/uploads/2020/12/1-5-1024x564.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/1-5-300x165.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/1-5-768x423.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/1-5-696x383.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/1-5-1068x588.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/1-5.png 1282w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Install UVDesk on Ubuntu 20.04</figcaption></figure>



<p>Now you need to create a new Virtualhost for the application:</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-enabled/uvdesk.conf</pre>



<p>And add the following content</p>



<p>Listen 8080<br>&lt;VirtualHost *:8080><br>ServerName uvdesk.osradar.test<br>DocumentRoot /var/www/udvesk/helpdesk-project/public</p>



<pre class="wp-block-preformatted">&lt;Directory /var/www/udvesk/helpdesk-project/public>
    Options -Indexes +FollowSymLinks +MultiViews
    AllowOverride All
    Require all granted
&lt;/Directory>

&lt;FilesMatch \.php$>
    # 2.4.10+ can proxy to unix socket
    SetHandler "proxy:unix:/var/run/php/php7.4-fpm.sock|fcgi://localhost"
&lt;/FilesMatch>

ErrorLog /var/log/apache2/uvdesk-error.log
CustomLog /var/log/apache2/uvdesk-access.log combined
&lt;/VirtualHost></pre>



<p>Replace <code>ServerName</code> with yours. And save the changes.</p>



<p>Then update the permissions and make Apache the new owner of the UVDesk folder.</p>



<pre class="wp-block-preformatted">sudo chown -R www-data:www-data /var/www/udvesk<br>sudo chmod -R 755 /var/www/udvesk</pre>



<p>And to apply all the changes, restart the service.</p>



<pre class="wp-block-preformatted">sudo systemctl restart apache2</pre>



<h3>5.- Complete the installation using the web interface</h3>



<p>So, open your web browser and go to <code>http://your-server:8080</code> and you will see the welcome screen</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/2-4-1024x506.png" alt="2.- Welcome screen" class="wp-image-26798" srcset="https://www.osradar.com/wp-content/uploads/2020/12/2-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/2-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/2-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/2-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/2-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/2-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Welcome screen</figcaption></figure>



<p>The installer will then perform a system check and if you meet all the requirements, you will see the following screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/3-5-1024x506.png" alt="3.- System Requirements" class="wp-image-26799" srcset="https://www.osradar.com/wp-content/uploads/2020/12/3-5-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/3-5-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/3-5-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/3-5-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/3-5-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/3-5.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- System Requirements</figcaption></figure>



<p>Then, it&#8217;s time to set up the parameters of the database that we have previously created. Set yours.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/4-4-1024x506.png" alt="4.- Set the database parameters" class="wp-image-26800" srcset="https://www.osradar.com/wp-content/uploads/2020/12/4-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/4-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/4-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/4-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/4-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/4-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Set the database parameters</figcaption></figure>



<p>After this, it&#8217;s time to create the administrator user.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/5-4-1024x506.png" alt="5.- Creating the super admin account" class="wp-image-26801" srcset="https://www.osradar.com/wp-content/uploads/2020/12/5-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/5-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/5-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/5-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/5-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/5-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Creating the super admin account</figcaption></figure>



<p>Then you can configure the website. You can leave it as it is or you can modify the values by which you think convenient.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/6-3-1024x506.png" alt="6.- Website configuration" class="wp-image-26802" srcset="https://www.osradar.com/wp-content/uploads/2020/12/6-3-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/6-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/6-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/6-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/6-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/6-3.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Website configuration</figcaption></figure>



<p>Finally, you will see the screen where you can start the installation.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/7-3-1024x506.png" alt="7.- Install UVDesk on Ubuntu 20.04" class="wp-image-26803" srcset="https://www.osradar.com/wp-content/uploads/2020/12/7-3-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/7-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/7-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/7-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/7-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/7-3.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Install UVDesk on Ubuntu 20.04</figcaption></figure>



<p>If everything goes well, you will see the following screen. There you have the links to the Front-end and the Admin Panel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/8-1-1024x506.png" alt="8.- UVdesk installed" class="wp-image-26804" srcset="https://www.osradar.com/wp-content/uploads/2020/12/8-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/8-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/8-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/8-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/8-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/8-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- UVdesk installed</figcaption></figure>



<p>This is what the frontend looks like</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/12/9-1-1024x506.png" alt="9.- UVDesk front-end" class="wp-image-26805" srcset="https://www.osradar.com/wp-content/uploads/2020/12/9-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/9-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/9-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/9-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/9-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/9-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- UVDesk front-end</figcaption></figure>



<p>And so the login screen</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/12/10-1-1024x502.png" alt="10.- Login screen" class="wp-image-26806" srcset="https://www.osradar.com/wp-content/uploads/2020/12/10-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/10-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/10-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/10-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/10-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/10-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- Login screen</figcaption></figure>



<p>When you log in you will see the administration screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/12/11-1-1024x502.png" alt="11.- UVDesk admin panel" class="wp-image-26807" srcset="https://www.osradar.com/wp-content/uploads/2020/12/11-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/11-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/11-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/11-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/11-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/11-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>11.- UVDesk admin panel</figcaption></figure>



<p>So enjoy it.</p>



<h2>Conclusion</h2>



<p>The open-source is gaining more and more ground in the business environment where applications such as UVDesk are becoming impractical for many organizations worldwide.</p>



<p>So, enjoy it.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-uvdesk-ubuntu/">How to install UVDesk on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-uvdesk-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
