RaspberryPi3B: Difference between revisions
(→Apache) |
|||
| Line 7: | Line 7: | ||
===Apache=== | ===Apache=== | ||
* installed by | |||
sudo apt-get install apache2 | sudo apt-get install apache2 | ||
chmod 777 /var/www/html | chmod 777 /var/www/html | ||
* restart | |||
sudo /etc/init.d/apache2 restart | |||
===MySQL=== | ===MySQL=== | ||
Revision as of 21:41, 9 November 2017
Configuration
- 192.168.178.34 for WLAN
- 192.168.178.35 for LAN
- SSH credentials (e.g. for WinSCP or Putty) user=pi pwd=raspberry for both IP
Software
Apache
- installed by
sudo apt-get install apache2 chmod 777 /var/www/html
- restart
sudo /etc/init.d/apache2 restart
MySQL
- install by
sudo apt-get install mysql-server php5-mysql mysql-client root root
PHPMyAdmin
- installed by
apt-get install phpmyadmin root
Wildfly
- create /wildfly directory and chmod 777
- copy wildfly-11.0.0.Final.zip to /wildfly
- unzip
- cd /wildfly/wildfly-11.0.0.Final/bin
- start server by
./standalone.sh &
- stop server by
./jboss-cli.sh --connect command=:shutdown
- restart server by
./jboss-cli.sh --connect command=:reload
Operation
Reboot
sudo reboot
Shutdown
sudo shutdown -h 0
Update
sudo apt-get update