Advanced Search
Search Results
7 total results found
AAD App In Business Central erstellen
Am Business Central anmelden und das Admin-Center öffnen Im Dynamics 365 Business Central admin center eine neue Microsoft Entra App Authorisieren und die zuvor erstellte Client-ID eingeben Zurück in Business Central muss die Microsoft Entra Applikatio...
Installationsanleitung
Installation mit folgenden Befehlen: #update package list sudo apt update #install vsftpd daemon & service sudo apt install vsftpd #copy original configuration file sudo cp /etc/vsftpd.conf /etc/vsftpd.conf.orig #configure firewall sudo ufw allow...
Konfigurationsdateien
Die Konfigurationsdatei ist unter dem Pfad "/etc/vsftpd.conf" verfügbar. Um die Datei zu bearbeiten kann folgender Befehl genutzt werden: nano /etc/vsftpd.conf Nach einer Anpassung der Konfiguration muss der Service neu gestartet werden. Der folgende Befehl...
SSL-Zertifikat
Für das SSL-Zertifikat wird Certbot im Zusammenhang mit Apache genutz. Installation: sudo apt-get update sudo apt-get install apache2 sudo snap install --classic certbot sudo ln -s /snap/bin/certbot /usr/bin/certbot sudo certbot certonly --apach...
Neuer Benutzer erstellen
Um einen neuen Benutzer auf dem FTP-Server zu erstellen, müssen folgende Befehle ausgeführt werden: #create user and enble ftp access sudo useradd -s /bin/bash -m -p $(perl -e 'print crypt("Mu$TrFTPuSr", "password")' "Mu$TrFTPuSr") muster echo 'muster:Mu$Tr...
Details zum Server
IP-Adresse: 188.166.161.116 FQDN: ftp.go-solution.cloud Servername: VSFTPD-01
Asphaltrechner Planende SQL-Struktur
-- Charset/Engine Empfehlung -- SET NAMES utf8mb4; -- Engine: InnoDB CREATE TABLE planende_temperatur_type ( temperatur_type_id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL, UNIQUE KEY uq_planende_temperatur_type_name (name) ) ENGI...