<?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>weberp Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/weberp/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 01 Jun 2021 16:14:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install WebERP on AlmaLinux 8 / CentOS 8</title>
		<link>https://www.osradar.com/install-weberp-on-almalinux-centos/</link>
					<comments>https://www.osradar.com/install-weberp-on-almalinux-centos/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 04 Jun 2021 04:13:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[almalinux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[weberp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30351</guid>

					<description><![CDATA[<p>Hello, friends. In this post, we will show you how to install WebERP on AlmaLinux OS 8.4 / CentOS 8 According to the project website: webERP is a complete web-based accounting and business management system that requires only a web-browser and pdf reader to use. It has a wide range of features suitable for many [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-weberp-on-almalinux-centos/">Install WebERP on AlmaLinux 8 / CentOS 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In this post, we will show you how to install WebERP on AlmaLinux OS 8.4 / CentOS 8</p>



<p>According to the <a href="https://www.weberp.org/" target="_blank" rel="noreferrer noopener">project website</a>:</p>



<blockquote class="wp-block-quote"><p>webERP is a complete web-based accounting and business management system that requires only a web-browser and pdf reader to use. It has a wide range of features suitable for many businesses particularly distributed businesses in wholesale, distribution, and manufacturing.</p><p>There are 33 different language translations available all included in the archive with users all over the world.</p></blockquote>



<p>Some of the main goals that the project planned and achieved are:</p>



<ul><li>Fast, web-based, integrated “best practice” business administration software.</li><li>“Low footprint” efficient and fast, with absolutely minimal network traffic</li><li>Platform Independence with no reliance on any propriety technologies</li><li>Scripts easily readable and modifiable by a business</li></ul>



<p>So, it’s time to start work</p>



<h2 id="install-weberp-on-almalinux-os-8-/-centos-8"><a href="#install-weberp-on-almalinux-os-8-/-centos-8" name="install-weberp-on-almalinux-os-8-/-centos-8"></a>Install WebERP on AlmaLinux OS 8 / CentOS 8</h2>



<p>The first thing you have to do, is to open a new terminal session or connect via SSH and update the distribution</p>



<pre class="wp-block-preformatted">sudo dnf update</pre>



<p>Then, you have to install the LAMP stack because WebERP works as a web application. So, you can read our post about it which is compatible with AlmaLinux OS.</p>



<p><a href="https://www.osradar.com/install-lamp-stack-on-oracle-linux-8-rhel-8-centos-8/" target="_blank" rel="noreferrer noopener">How to install LAMP on CentOS 8?</a></p>



<p>Also, install some modules and packages needed for the tutorial:</p>



<pre class="wp-block-preformatted">php php-mysqli php-curl php-curl php-json php-cgi php-xmlrpc php-gd php-mbstring unzip</pre>



<p>Once this is installed, you can continue.</p>



<h3 id="creating-a-new-database-for-weberp"><a href="#creating-a-new-database-for-weberp" name="creating-a-new-database-for-weberp"></a>Creating a new database for WebERP</h3>



<p>As you can imagine, this application needs to store data and for that it is compatible with advanced database drivers such as MariaDB.</p>



<p>Although MariaDB and AlmaLinux OS are very secure, it is advisable to create a database that is managed by a MariaDB user different from the root user.</p>



<p>So, open the shell</p>



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



<p>And create the database, the user, his password and the corresponding permissions.</p>



<pre class="wp-block-preformatted">CREATE DATABASE weberpdb;
GRANT ALL PRIVILEGES ON weberpdb.* TO 'weberpuser'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
EXIT;</pre>



<p>You can replace the values with whatever you want, especially the password.</p>



<h3 id="download-weberp-on-almalinux-os-8.4-/-centos-8"><a href="#download-weberp-on-almalinux-os-8.4-/-centos-8" name="download-weberp-on-almalinux-os-8.4-/-centos-8"></a>Download WebERP on AlmaLinux OS 8.4 / CentOS 8</h3>



<p>Now, with the help of the <code>wget</code> command you can download the WebERP package.</p>



<pre class="wp-block-preformatted">wget https://sourceforge.net/projects/web-erp/files/webERP_4.15.zip</pre>



<p>Unzip it inside the Apache folder.</p>



<pre class="wp-block-preformatted">sudo unzip webERP_4.15.zip -d /var/www/html</pre>



<p>Then, make Apache the owner of the folder and set the appropriate permissions:</p>



<pre class="wp-block-preformatted">sudo chown apache:apache -R /var/www/html/webERP
sudo chmod 755 -R /var/www/html/webERP</pre>



<p>Now create a new VirtualHost for webERP</p>



<pre class="wp-block-preformatted">sudo nano /etc/httpd/conf.d/weberp.conf</pre>



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



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>

ServerAdmin admin@weberp.org
DocumentRoot /var/www/html/webERP
ServerName weberp.osradar.test

        &lt;Directory /var/www/html/webERP/>
                Options FollowSymLinks
                AllowOverride All
                Order allow,deny
                allow from all
        &lt;/Directory>

ErrorLog /var/log/httpd/weberp.org-error_log
CustomLog /var/log/httpd/weberp.org-access_log common
&lt;/VirtualHost></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="884" height="410" src="https://www.osradar.com/wp-content/uploads/2021/06/1-1.png" alt="1.- New VirtualHost for WebERP" class="wp-image-30418" srcset="https://www.osradar.com/wp-content/uploads/2021/06/1-1.png 884w, https://www.osradar.com/wp-content/uploads/2021/06/1-1-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/1-1-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/1-1-696x323.png 696w" sizes="(max-width: 884px) 100vw, 884px" /><figcaption>1.- New VirtualHost for WebERP</figcaption></figure>



<p>Replace the value of <code>ServerName</code> with your domain. Save the changes and close the edit</p>



<p>To apply the changes, restart Apache.</p>



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



<h3 id="install-weberp-on-almalinux-os"><a href="#install-weberp-on-almalinux-os" name="install-weberp-on-almalinux-os"></a>Install webERP on AlmaLinux OS</h3>



<p>Now, open a web browser and access <code>http://your-server/</code> and you will see the first screen where you will have to choose the installation language</p>



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



<p>Next, set up the database parameters</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/06/3-1-1024x502.png" alt="3.- Installing WebERP on AlmaLinux 8 / CentOS 8" class="wp-image-30420" srcset="https://www.osradar.com/wp-content/uploads/2021/06/3-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/3-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/3-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Installing WebERP on AlmaLinux 8 / CentOS 8</figcaption></figure>



<p>In the next step, you have to define the company name, as well as create the <code>admin</code> user and password.</p>



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



<p>After this, webERP will be installed and you will see 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/2021/06/5-1-1024x502.png" alt="5.- WebERP login screen" class="wp-image-30422" srcset="https://www.osradar.com/wp-content/uploads/2021/06/5-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/5-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/5-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- WebERP login screen</figcaption></figure>



<p>After logging in you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="522" src="https://www.osradar.com/wp-content/uploads/2021/06/6-1-1024x522.png" alt="6.- WebERP on AlmaLinux 8.4 / CentOS 8" class="wp-image-30423" srcset="https://www.osradar.com/wp-content/uploads/2021/06/6-1-1024x522.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-300x153.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-768x392.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-696x355.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/6-1-1068x545.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/6-1.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- WebERP on AlmaLinux 8.4 / CentOS 8</figcaption></figure>



<p>Enjoy it</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>WEbERP is a very efficient application to manage your company. The installation is easy to install and use and it’s free.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-weberp-on-almalinux-centos/">Install WebERP on AlmaLinux 8 / CentOS 8</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-weberp-on-almalinux-centos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
