Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Aphorismen
Applications
Business Economics & Admin.
My Computers
Cooking
Devices
Folders
Food
Hardware
Infos
Software Development
Sports
Operation Instructions
Todos
Test
Help
Glossary
Community portal
adaptions
Sidebar anpassen
Wiki RB4
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
RaspberryPi3B
(section)
Page
Discussion
English
Read
Edit
View history
Toolbox
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==Software== ===[[Apache|Apache]]=== ====Installation==== * verion 2.4 installed by sudo apt-get install apache2 chmod 777 /var/www/html * to setup Apache as reverse proxy for [[RaspberryPi3B#Wildfly_19.1|Wildfly]] sudo a2enmod proxy_ajp * creates proxy.conf, proxy.load and proxy_ajp.load in /etc/apache2/mods-enabled ====Configuration==== =====Site Configuration===== * <code>/etc/apache2/sites-enabled/*</code> are links to /etc/apache2/sites-available * for forwarding to Raspberry 4B in <code>000-default-le-ssl.conf</code> ProxyPass /fwdtest http://192.168.178.72 ProxyPassReverse /fwdtest http://192.168.178.72 =====Logging===== * see /var/log/apache2 ====Operation==== * restart sudo /etc/init.d/apache2 restart or service apache2 restart * find out version apache2ctl -v // -> Apache 2.4 * stop service sudo service apache2 stop * log goes to /var/log/apache2 ===Backup by RaspiBackup=== ====Installation==== * installation according to [https://www.linux-tips-and-tricks.de/de/raspberry/23-pi-erstellt-automatisch-backups-von-sich-selbst-pi-creates-automatic-backups-of-itself/ here] as user root curl -sSLO https://www.linux-tips-and-tricks.de/raspiBackupInstall.sh && sudo bash raspiBackupInstall.sh EN N (normal mode) RSYNC (backup type) 5 (number of backups) Y (verbose message) installs raspiBackup.sh and raspiBackupInstall.sh to /usr/local/bin and raspiBackup.conf to /usr/local/etc. * changed in /usr/local/etc/raspiBackup.conf to DEFAULT_BACKUPPATH="/media/usbstick2/raspibackup" ====Operation==== * open termminal * call backup by /usr/local/bin# ./raspiBackup.sh -a : -o : -m detailed -P * map HomePC backup directory as described in [[RaspberryPi3B#Backup_4|here]] * copy latest backup to ../backup/raspberry/raspibackup/ by /media/usbstick2/raspibackup/raspberrypi# cp -r raspberrypi-rsync-backup-<DATETIME>/ /media/ubunturoot/backup/raspberry/raspberrybackup/ * copy backup directory to [[Computer#Backup|external discs]] ===Mediawiki=== * download mediawiki-1.25.1.tar.gz and copy it to /tmp * extract it by tar -xzf mediawiki-1.25.1.tar.gz * rename directory mediawiki-1.25.1 to mediawiki by mv mediawiki-1.25.1 mediawiki * move directory to the html directory by mv /tmp/mediawiki /var/www/html/mediawiki * call http://192.168.178.35/mediawiki/ * to avoid not logged-in users to view or edit anything added the following lines to LocalSettings.php $wgGroupPermissions['*']['read'] = false; $wgGroupPermissions['*']['edit'] = false; $wgGroupPermissions['*']['createaccount'] = false; * install ImageMagick for picture rendering by sudo apt-get update sudo apt-get install imagemagick * copy C:\Uwes\Programme\xampp\htdocs\mediawiki-1.16.0\images to /var/www/html/mediawiki/images * set images folder permissions right by sudo chown -R www-data:www-data images/ sudo chmod -R 755 images/ * prabably forget to describe DB copy from EON laptop to Raspberry ====Backup==== =====DB Backup===== * start xampp on laptop and start Apache and MySQL (works also on [https://uweheuer.spdns.de/mediawiki/index.php/EDTLaptop3 ZBook]) * call (database mediawiki_raspberry3b to be there) C:\Uwes\owncloud\batches\Raspberry3BMediawikiToLocalhost.bat // will update DB [http://localhost/phpmyadmin/index.php?route=/database/structure&db=mediawiki_raspberry3b mediawiki_raspberry3b] and document date in C:\temp text file * on Raspberry map [[RaspberryPi3B#DB_backup_2|/media/ubunturoot/]] mysqldump --single-transaction -h localhost -u root -p mediawiki > /media/ubunturoot/backup/raspberry/mediawiki/mediawiki_<YYYY-MM-DD>.txt Enter password: * copy DB export file to [[Computer#Backup|external discs]] =====Directory Backup===== * on Raspberry ** to Ubuntu (if it is switched on) tar zcvhf /media/ubunturoot/backup/raspberry/mediawiki/mediawiki_<YYYY-MM-DD>.tgz /var/www/html/mediawiki ** to local disc tar zcvhf /backup/mediawiki/mediawiki_<YYYY-MM-DD>.tgz /var/www/html/mediawiki tar zcvhf /backup/mediawiki/mediawiki_2022-06-29.tgz /var/www/html/mediawiki *** copy it to Raspberry 4 <code>/home/uwe/backup/Raspberry3B/MediaWiki</code> via WinSCP *** copy tgz file to [[Computer#Backup|external discs]] *** copy tgz file to <code>C:\Uwes\owncloud\backups\raspberry3B\Mediawiki</code> via WinSCP ====Upgrade from 1.25 to 1.33==== * install version 1.33 ** download the latest release (1.33) from [https://www.mediawiki.org/wiki/Download here] to laptop and copy it to raspberry /tmp directory ** extract gz file in /tmp by tar -xvzf mediawiki-1.33.0.tar.gz ** move extracted directory to /var/www/html mv mediawiki-1.33.0/ /var/www/html/ ** delete downloaded gz-file ** copy images from 1.25 installation cp -a /backup/2019-08-27_mediawiki/images/* /var/www/html/mediawiki/images/ ** copy LocalSettings.php from 1.25 installation cp ../mediawiki/LocalSettings.php . ** edit LocalSettings.php (because of errors of the update script *** decomment wfLoadSkin except Vector *** decomment ConfirmEdit extension ** [[RaspberryPi3B#PHP7.2|disable PHP5 and enable PHP7.2]] ** run the update script by cd maintenance php update.php ====Install Msupload extension to enable Drag & Drop==== * install from [https://www.mediawiki.org/wiki/Extension:MsUpload here] * install [[RaspberryPi3B#PHP7.2|PHP bcmath module]] to get rid of the error in editor ===Install MS Upload Extension=== * download and follow instructions from [https://www.mediawiki.org/wiki/Special:ExtensionDistributor?extdistname=MsUpload&extdistversion=REL1_33 here] ===MySQL=== * install by sudo apt-get install mysql-server php5-mysql mysql-client root root * decomment in /etc/mysql/my.cnf #bind-address = 127.0.0.1 * login with local client mysql -u root -p ====Backup==== * map directory like in [[RaspberryPi3B#Backup_4|owncloud backup]] mysqldump --all-databases --single-transaction -h localhost -u root -p > /media/ubunturoot/backup/raspberry/mysql/DB_<YYYY-MM-DD>.txt ===OwnCloud=== ====Settings==== * WebDAV https://uweheuer.spdns.de/owncloud/remote.php/dav/files/uwe.heuer%40gmail.com/ * installation directory is <code>/var/www/html/owncloud/</code> * configuration including data directory is <code>/var/www/html/owncloud/config/config.php</code> * data directory is <code>/media/usbstick/owncloud/data/uwe.heuer@gmail.com</code> * latest version of the files are in subdirectory <code>/files</code> ====Operation==== * make occ executable root@raspberrypi:/var/www/html/owncloud# sudo chmod +x occ * test occ root@raspberrypi:/var/www/html/owncloud# sudo -u www-data ./occ * scan filesystem and update DB root@raspberrypi:/var/www/html/owncloud# sudo -u www-data ./occ files:scan --all ====Installation==== [[ownCloud|ownCloud]] installed according to [https://eltechs.com/owncloud-on-raspberry-pi/ here]: apt-get install apache2 php5 php5-gd php-xml-parser php5-intl apt-get install php5-sqlite php5-mysql smbclient curl libcurl3 php5-curl usermod -a -G www-data www-data * download owncloud-10.0.3.tar.bz2 cd /var/www/html tar xfj /home/pi/owncloud-10.0.2.tar.bz2 chown -R www-data:www-data /var/www/html service apache2 restart * call <IP>/owncloud, admin user uwe.heuer@gmail.com Halloo0@1, DB root root owncloud localhost:3306 * change data directory according to [https://doc.owncloud.org/server/10.0/admin_manual/maintenance/manually-moving-data-folders.html here] by mkdir /media/usbstick/owncloud/data chown -R www-data:www-data /media/usbstick/owncloud/data apachectl -k stop rsync -avz /var/www/html/owncloud/data /media/usbstick/owncloud/ mv data data_obsolete ln -s /media/usbstick/owncloud/data/ /var/www/html/owncloud/data apachectl -k graceful * to make owncloud accessible via uweheuer domain added to /var/www/html/owncloud/config/config.php in trusted domains 'trusted_domains' => array ( 0 => '192.168.178.35', 1 => 'uweheuer.spdns.de', ) * to make it accessible only via SSL see '000-default.conf' and '000-default-le-ssl.conf' in [[#Site_Configuration|/etc/apache2/sites-enabled/]] * to correct inconsistent database and filesystem :/var/www/html/owncloud# sudo -u www-data php occ files:scan --all ====Contacts==== * Contacts-App via Market installed * CardDav URL https://uweheuer.spdns.de/owncloud/remote.php/dav/addressbooks/users/uwe.heuer@gmail.com/contacts/ by Contacts -> Settings -> ... -> Link -> Copy URL to Clipboard * for client configuration see e.g. [[SamsungTabletTabA#CardDAV-Sync_free|Samsung Tablet]] ====Calendar==== * Calendar-App via Market installed * CalDav URL https://uweheuer.spdns.de/owncloud/remote.php/dav/ * for client configuration see e.g. [[SamsungTabletTabA#CalDAV-Sync|Samsung Tablet]] ====Upgrade==== * user (right top corner) -> settings * admin area (left area) -> General -> Scroll down to Updater * install apps again ====Backup==== =====Backup Files===== * create <code>/backup/BackupOwncloudFiles.sh</code> with ** <code>cd /media/usbstick/owncloud/data/uwe.heuer@gmail.com/files</code> ** <code>zip -rFS -P "<STANDARD>" /media/usbstick/backup/owncloud/owncloud_backup.zip .</code> * zipping every night by <code>sudo crontab -e</code> * file will be fetched from Raspberry 4 and copied to Google drive (see [[RaspberryPi4B#Backup_of_Raspberry_3B|here]]) =====config directory===== * and config directory <code>/var/www/html/owncloud/config/</code> to [[Computer#Backup|external discs]] =====DB backup===== created /media/ubunturoot permanently * start Ubuntu HomePC (via fritz.box or WOL) * login (as root) to Raspberry e.g. by Putty from Windows or Ubuntu * mount directory for backup by sudo mount -t cifs -o username=uwe //192.168.178.202/shareroot /media/ubunturoot/ <ROOT_PWD> * change to Owncloud directory by cd /var/www/html/owncloud/ * backup DB by mysqldump --single-transaction -h localhost -u root -p owncloud > /media/ubunturoot/backup/raspberry/owncloud/owncloud_<YYYY-MM-DD>.txt Enter password: * unmount directory by umount /media/ubunturoot * and copy dump file to [[Computer#Backup|external discs]] =====Data Backup===== * copy data directory <code>/media/usbstick/owncloud/data</code> to [[Computer#Backup|external discs]] ===PHP=== ====PHP5==== * installed via [[#OwnCloud|OwnCloud]] installation. Is is not clear which ini-file is used: ./etc/php5/cli/php.ini ./etc/php5/apache2/php.ini // this one is used according phpinfo() * increased max file upload size for [[#Installation|Wordpress]] by setting upload_max_filesize = 4M // before 2M service apache2 restart ====PHP7.2==== * installation according to [https://tecadmin.net/install-php7-on-debian/ here] sudo apt update sudo apt install php7.2 sudo apt install php7.2 php7.2-cli php7.2-cgi php7.2-common php7.2-curl php7.2-gd php7.2-json php7.2-mbstring php7.2-mysql php7.2-opcache php7.2-readline php7.2-xml libapache2-mod-php7.2 * and in order to make Owncloud work with 7.2 apt-get install php7.2-intl apt-get install php7.2-zip service apache2 restart * and in order to make [[RaspberryPi3B#Install_Msupload_extension_to_enable_Drag_.26_Drop|Msupload extension]] of Mediawiki to work apt-get install php7.2-bcmath service apache2 restart * ini-files: ./etc/php/7.2/cli/php.ini ./etc/php/7.2/apache2/php.ini // this one is used according phpinfo() * switch to PHP7.2 (PHP5 remains installed) a2dismod php5 a2enmod php7.2 service apache2 restart ===PHPMyAdmin=== * installed by apt-get install phpmyadmin root root * add to /etc/apache2/apache2.conf at the end (marked by UH) Include /etc/phpmyadmin/apache.conf * changed URL in /etc/phpmyadmin/apache.conf by Alias /phpxmyadmin /usr/share/phpmyadmin * restart apache ===SSL=== ====Obsolete installation via Backports Packages==== * edit /etc/apt/sources.list and add deb http://ftp.debian.org/debian jessie-backports main * backports are recompiled packages from testing and unstable in a stable environment so that they will run without new libraries * update apt-get update * install via Certbot, a script to install and update Let´s Encrypt SSL-certificats sudo apt-get install python-certbot-apache sudo apt-get install certbot -t jessie-backports sudo certbot --apache uweheuer.goip.de uwe.heuer@gmail.com * creates among others /etc/letsencrypt ====Upgrade Cerbot from Homepage==== * goto [https://certbot.eff.org/ Certbot Homepage] and select 'Apache' and 'Debian 8 (jessie)' and follow instructions sudo apt-get remove certbot wget https://dl.eff.org/certbot-auto sudo mv certbot-auto /usr/local/bin/certbot-auto sudo chown root /usr/local/bin/certbot-auto sudo chmod 0755 /usr/local/bin/certbot-auto * certbot-auto accepts the same flags as certbot * decommented the backports entry in /etc/apt/sources.list sudo apt-get update * then continue with Certbot configuration sudo /usr/local/bin/certbot-auto --apache -d uweheuer.spdns.de sudo /usr/local/bin/certbot-auto -d bbx0axbhewglhzf4.myfritz.net sudo /usr/local/bin/certbot-auto --apache delete --cert-name uweheuer.goip.de // this also edits /etc/apache2/sites-enabled/000-default-le-ssl.conf * after Fritzbox 7490 to Fritzbox 7590 ./certbot-auto -d uweheuer.spdns.de --cert-name 36jjbpz29h1pyywz.myfritz.net sudo /usr/local/bin/certbot-auto delete --cert-name bbx0axbhewglhzf4.myfritz.net replace in /etc/apache2/sites-enabled/000-default-le-ssl.conf bbx0axbhewglhzf4 with 36jjbpz29h1pyywz * edit file /etc/cron.d/certbot and decomment old entry from obsolete installation and add 0 0,12 * * * python -c 'import random; import time; time.sleep(random.random() * 3600)' && /usr/local/bin/certbot-auto renew =====Manual renew of SSL certificates===== * login as root@raspberrypi with <STANDARD>: cd /usr/local/bin ./certbot-auto renew // this might take very long if an update is needed, obviously requires [[RaspberryPi3B#Operation_3|reboot]] for JBoss to work properly * easiest is to reboot and than [[RaspberryPi3B#Operation_4|restart Wildfly]] (Wildfly is not startet automatically after reboot) ===TCPDump=== * sudo apt-get install tcpdump ===UweHeuer=== * create database mysql505 with PHPMyAdmin * export and import database * create /wildfly/wildfly-11.0.0.Final/standalone/data/uweheuer * copy abc.tmp and /wildfly/wildfly-11.0.0.Final/standalone/data * download mysql-connector-java-5.1.44-bin.jar from MySQL site * deploy it via the Wildfly admin console * create datasources via Web admin console with MySQLDS (see [[:File:RaspberryMySQL505Configuration.pdf]]) jdbc:mysql://localhost/mysql505?autoReconnect=true root root ... UwesWikiDS ... * after [[RaspberryPi3B#SSL|SSL]] setup added to [[#Site_Configuration|/etc/apache2/sites-enabled/]]000-default-le-ssl.conf ProxyPass /uweheuer ajp://localhost:8009/uweheuer ProxyPassReverse /uweheuer http://localhost/uweheuer ProxyPass /uweheuer_qa ajp://localhost:8009/uweheuer_qa ProxyPassReverse /uweheuer_qa http://localhost/uweheuer_qa * /etc/apache2/sites-available/000-default.conf permanent redirect to SSL RedirectMatch ^/$ https://uweheuer.spdns.de/wordpress Redirect /uweheuer https://uweheuer.spdns.de/uweheuer Redirect /uweheuerqs https://uweheuer.spdns.de/uweheuerqs Redirect /owncloud https://uweheuer.spdns.de/owncloud * create <code>/myprogs</code> and copy DisAndEnableUweHeuer.bat * Wildfly logger configuratoin according to [[Uweheuer#Server_Logging|here]] * after deployment uweheuer.war is probably extracted to (vfs stands for virtual file system) /home/uwe/raspberry_root/wildfly/wildfly-11.0.0.Final/standalone/tmp/vfs/temp ====Backup August 2025==== * C:\Uwes\owncloud\batches\Raspberry3BBookmarksToCTemp.bat Window cmd batch (not Powershell) to copy DB content for uweheuer to C:\temp ====Backup==== * on laptop (xampp must be running) ** create DB mysql506 ** run script C:\Uwes\Batches\RaspberryBookmarksToLocalhost.bat ** rename DB with date extension * on Raspberry map ubunturoot mysqldump --single-transaction -h localhost -u root -p mysql506 > /media/ubunturoot/backup/raspberry/uweheuer/mysql506_<YYYY-MM-DD>.txt Enter password: ** copy <code>/wildfly/wildfly-19.1.0.Final/data/uweheuer/abc.tmp|Configuration.properties</code> to <code>/media/ubunturoot/backup/raspberry/uweheuer/</code> ** copy files to [[Computer#Backup|external discs]] ===Wildfly 19.1=== ====Installation==== * download wildfly-19.1.0.Final.zip from https://wildfly.org/downloads/ to laptop * copy zip file to <code>/wildfly/</code> (from Wildfly 11 installation) * unzip file unzip wildfly-19.1.0.Final.zip // creates directory wildfly-19.1.0.Final * enable remote access to Wildfly by editing /wildfly/wildfly-19.1.0.Final/standalone/configuration/standalone.xml and replace (save old version to standalone.xml_20190609): <interface name="management"> <inet-address value="${jboss.bind.address.management:127.0.0.1}"/> </interface> <interface name="public"> <inet-address value="${jboss.bind.address:0.0.0.0}"/> </interface> with <interface name="management"> <any-address/> </interface> <interface name="public"> <any-address/> </interface> * enable remote CLI access by adding native interface configuration to /wildfly/wildfly-19.1.0.Final/standalone/configuration/standalone.xml // add to <socket-binding-group name="standard-sockets" ... <socket-binding name="management-native" interface="management" port="${jboss.management.native.port:9999}"/> // add to <management-interfaces> <native-interface security-realm="ManagementRealm"> <socket-binding native="management-native"/> </native-interface> * because of experience with Wildfly 11 (see /var/log/syslog) copy /wildfly/wildfly-19.1.0.Final/bin/standalone.conf to standalone.conf_20200609 and edited to: -Xmx256m (from Xmx512m) * to make jsp work cd /wildfly/wildfly-19.1.0.Final/standalone chmod -R 777 tmp * add management user by ../bin/add-user.sh Management User uweheuer <Lj>Halloo0@1<Lj> no groups * add Ajp Configuration -> Web- > Server -> default-server -> view -> Listener -> AJP Listener -> add -> 'ajp' 'ajp' * activate audit.log by changing <code><audit-log></code> section to enabled <logger log-boot="true" log-read-only="false" enabled="true"> =====UweHeuer app preparation===== * install MySQL JDBC driver (Connector/J) (according to [https://docs.wildfly.org/19.1/Admin_Guide.html#DataSource official documentation for JDBC Driver installation] ** download platform independent Connector/J version 5.1.44 from [https://dev.mysql.com/downloads/connector/j/ here] (more actual version throw a timezone error during connection test) ** extract it ** open Admin console -> Deployments -> Upload Deployment and select mysql-connector-java-5.1.44-bin.jar for upload * create data directory (see [[RaspberryPi3B#UweHeuer|here]]) and copy latest version from Wildfly 11 * create datasources ** mySQLDS [[:File:RaspberryMySQLConfigurationUweHeuer.pdf]] Name: MySQLDS JNDI Name: java:jboss/datasources/MySQLDS Connection URL: jdbc:mysql://localhost/mysql506?autoReconnect=true Driver Name: mysql-connector-java-5.1.44-bin.jar_com.mysql.jdbc.Driver_5_1 *** set JTA to false ** mySQLDS_QA ([[:File:RaspberryMySQL506QAConfiguration.pdf|see screenshots]]) *** set JTA to false ** UwesWikiDS * create uweheuer logger (set use parent handler to false) ** [[File:UweHeuerLoggerConfiguration1.PNG|400px]] ** [[File:UweHeuerLoggerConfiguration2.PNG|400px]] ** [[File:UweHeuerLoggerConfiguration3.PNG|400px]] ====Operation==== * [[JBoss#Logging_Configuration|logging]] in cd /wildfly/wildfly-19.1.0.Final/standalone/log * check server status cd /wildfly/wildfly-19.1.0.Final/bin ./jboss-cli.sh -c --commands="read-attribute server-state" * [http://192.168.178.35:8080/ Wildfly Home] * [http://192.168.178.35:9990/console/index.html Wildfly Administration @ Local Network] (only with Firefox) * [https://uweheuer.spdns.de/console Wildfly Administration @ SPDNS cd /wildfly/wildfly-19.1.0.Final/bin ./standalone.sh & disown ./jboss-cli.sh --connect command=:shutdown ===Wildfly 11 (obsolete)=== * create /wildfly directory and chmod 777 * copy wildfly-11.0.0.Final.zip to /wildfly * unzip * enable remote access to Wildfly by editing /wildfly/wildfly-11.0.0.Final/standalone/configuration/standalone.xml and replace (save old version to standalone.xml_20171110): <interface name="management"> <inet-address value="${jboss.bind.address.management:127.0.0.1}"/> </interface> <interface name="public"> <inet-address value="${jboss.bind.address:0.0.0.0}"/> </interface> with <interface name="management"> <any-address/> </interface> <interface name="public"> <any-address/> </interface> * enable remote CLI access by adding native interface configuration to /wildfly/wildfly-11.0.0.Final/standalone/configuration/standalone.xml (save old version to standalone.xml_20171112) * set Wildfly as a service by (there is a debian script in the doc directory and a [http://www.it-adviser.net/wildfly-installieren-und-als-dienst-ausfuehren/ description] in the internet, but it didn't work, so the following approach from [[HomePCNew#JBoss|HomePC New]]) was used: create /etc/init.d/uweswildflyuweswildfly sudo chmod 755 /etc/init.d/uweswildfly sudo update-rc.d uweswildfly defaults // log goes to /var/log/uwes.log * because of termination of java by operating system (see /var/log/syslog) for a test edited /wildfly/wildfly-11.0.0.Final/bin/standalone.conf: -Xmx256m (from Xmx512m) * to make jsp work cd /wildfly/wildfly-11.0.0.Final/standalone chmod -R 777 tmp * enable ajp communication to Apache2 by Web admin -> Configuration -> Subsystems -> Web/HTTP - Untertow -> Http -> View -> default server -> View -> AJP Listeners -> Add 'ajp' 'ajp' * deployments gets extracted to (vfs stands for virtual file system) /home/uwe/raspberry_root/wildfly/wildfly-11.0.0.Final/standalone/tmp/vfs/temp ====Manual Operation==== * cd <code>/wildfly/wildfly-11.0.0.Final/bin</code> * start server by [[RaspberryPi3B#Reboot|reboot]] or by ./standalone.sh & disown * stop server by ./jboss-cli.sh --connect command=:shutdown * restart server by ./jboss-cli.sh --connect command=:reload * get server status by ./jboss-cli.sh -c --commands="read-attribute server-state" ===Wordpress=== ====Installation==== cd /var/wwww/html wget https://wordpress.org/latest.zip unzip latest.zip sudo chown -R www-data:www-data wordpress * create database wordpress via phpmyadmin * call https://uweheuer.goip.de/wordpress user = uwe.heuer@gmail.com password = Halloo0@1 Increased maximum upload file size by editing PHP.INI.
Summary:
Please note that all contributions to Wiki RB4 may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Uwe Heuer Wiki New:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width