My Story how i learned german
نقوم بإستخراج الاوراق للحصول على الإقامة التركية والتأمين الصحي وجميع الأوراق اللازمة
أحصل على قبولك الجامعي مجانا! معرفة المزيد
Zoom-Hintergrund ändern
Wir zeigen Ihnen im Folgenden, wie Sie den Hintergrund in der Windows-App von Zoom ändern können. Die Schritte können in der Webversion abweichen. Folgen Sie unserer Schritt-für-Schritt-Anleitung, der Kurzanleitung oder dem Erklär-Video.
Installation instructions for RabbitMQ Server on my Pi
systemctl enable
command and then start it by running the systemctl start
command. The last command listed below is enabling the RabbitMQ Management Portal,
which is very useful and I definitely want that in order to monitor my
cluster health, connections, exchanges, queues, policies, etc. It comes
as a plugin, so I only have to enable it as it seems.please type:
sudo apt-get install rabbitmq-server
sudo systemctl enable rabbitmq-server
sudo systemctl start rabbitmq-server
sudo rabbitmq-plugins enable rabbitmq_management
sudo rabbitmqctl add_user test test
sudo rabbitmqctl set_user_tags test administrator
sudo rabbitmqctl set_permissions -p / test ".*" ".*" ".*"
Accessing management portal in the local network
But how am I going to access the management portal if my RaspberryPi OS
doesn’t support desktop features? The answer to this question is quite
simple, the same way I was able to control my Raspberry Pi from my
Windows 10 PC. Remotely! However, the guest/guest credentials don’t work
outside the local machine, so I have to create a new user in order to
access the management portal remotely. Below, I’ve included a snippet to
create a new user test with password test (not very imaginative huh?) and assign it an administrator role.
please type:
sudo rabbitmqctl add_user test test
sudo rabbitmqctl set_user_tags test administrator
sudo rabbitmqctl set_permissions -p / test ".*" ".*" ".*"
With the above completed, I can now test if that works, by accessing the
management portal from my PC. The master node is locat
ed at
192.168.0.24 on local network and the port for management portal is
15672.
1. Insert a microSD card into your computer. Your card should be 8GB or larger (the lite version of Raspberry Pi OS will use less space). We have a list of the best microSD cards for Raspberry Pi to help you choose one that optimizes performance.
2. Download, install and run Raspberry Pi Imager.
3. Click the Choose OS button. A menu appears.
4. Select Raspberry Pi OS (32-bit) from the OS menu.
After you have the Pi connected to your network or directly to your PC, you'll need to establish an SSH connection.
1. Download and install Putty if you don't already have it. Putty is the leading SSH client for Windows.
2. Enter raspberrypi or raspberrypi.local as the address you wish to connect to in Putty, and click Open. You usually need to add the .local if the Pi is directly connected to your PC via USB or Ethernet cable.
3. Click Ok if you get a security warning alert. It's not a problem.
4. Enter pi as your username and raspberry as your password. You may want to change these later.
A configuration app opens.
2. Select Interfacing Options (number 5 on the list)
On your PC:
1. Download, install and launch VNC Viewer.
2. Select New connection from the File menu.
4. Click Ok.
5. Double-click on the connection icon to connect.
7. Enter the Pi's username and password when prompted. The defaults are username: pi and password: raspberry. Click Ok.
How to convert jupyter files (*.ipynb) to python files (*.py):
Schritt 1: Open cmd Window box: WindowsStart button put “cmd” in.
Schritt 2: Go in the cmd to the directory, where your file is e.g. cd desktop
Schritt 3: jupyter nbconvert filename.ipynb --to python