wiki:projekte:erp:uebersicht
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
wiki:projekte:erp:uebersicht [2025/05/05 19:51] – angelegt wikimaster | wiki:projekte:erp:uebersicht [2025/05/06 19:14] (aktuell) – wikimaster | ||
---|---|---|---|
Zeile 11: | Zeile 11: | ||
apt-get update | apt-get update | ||
apt-get dist-upgrade | apt-get dist-upgrade | ||
- | apt-get install aptitude mc | + | apt-get install aptitude mc unzip |
cd ~ | cd ~ | ||
## wget https:// | ## wget https:// | ||
## dpkg -i dolibarr_21.0.1-4_all.deb | ## dpkg -i dolibarr_21.0.1-4_all.deb | ||
+ | apt install apache2 -y | ||
+ | apt install default-mysql-server -y | ||
+ | systemctl status mysql | ||
+ | apt install php php-mysqli php-curl php-mbstring php-xml php-zip php-json php-gd php-soap php-ldap -y | ||
+ | php -v | ||
+ | mysql -u root -p | ||
+ | # Enter password: ********** | ||
+ | MariaDB [(none)]> | ||
+ | MariaDB [(none)]> | ||
+ | MariaDB [(none)]> | ||
+ | MariaDB [(none)]> | ||
+ | MariaDB [(none)]> | ||
+ | wget https:// | ||
+ | mv 21.0.1.zip dolibarr-21.0.1.zip | ||
+ | unzip dolibarr-21.0.1.zip | ||
+ | mkdir / | ||
+ | mv dolibarr-21.0.1 / | ||
+ | mv / | ||
+ | chown -R www-data: | ||
+ | chmod -R 755 / | ||
+ | mcedit / | ||
+ | # Add the following configuration to the file: | ||
+ | < | ||
+ | ServerAdmin webmaster@localhost | ||
+ | DocumentRoot / | ||
+ | ServerName your_domain_or_IP | ||
+ | |||
+ | < | ||
+ | AllowOverride All | ||
+ | Require all granted | ||
+ | </ | ||
+ | |||
+ | ErrorLog ${APACHE_LOG_DIR}/ | ||
+ | CustomLog ${APACHE_LOG_DIR}/ | ||
+ | </ | ||
+ | # save and exit | ||
+ | |||
+ | a2ensite dolibarr.conf | ||
+ | systemctl restart apache2 | ||
+ | a2enmod rewrite | ||
+ | systemctl restart apache2 | ||
+ | |||
+ | #Install Dolibarr via the Web Interface | ||
+ | #Open a browser and navigate to http:// | ||
</ | </ | ||
wiki/projekte/erp/uebersicht.txt · Zuletzt geändert: 2025/05/06 19:14 von wikimaster