کانال انجمن کلاد و دوآپس تبریز – Telegram
کانال انجمن کلاد و دوآپس تبریز
261 subscribers
116 photos
5 videos
57 files
550 links
کانال انجمن کلاد، دوآپس و مهندسی اتکاپذیری سیستم تبریز، نشر اطلاعیه رویداد ها و همایش های حوزه کلاد و دوآپس تبریز
لینک گروه

https://news.1rj.ru/str/devops_tabriz_group

admin
@arsalanses
Download Telegram
sysbench fileio --file-total-size=1G --file-num=1 prepare
sysbench fileio --file-total-size=1G --file-num=1 --file-test-mode=seqrd run

sysbench fileio --file-test-mode=seqwr --file-num=64 --file-total-size=32M run
sysbench fileio --file-test-mode=seqrd run
ways to reduce the size of your docker images:

1. Multistage builds
2. Layer optimization
3. Images From Scratch
4. docker volumes & dbs
5. .dockerignore
6. dive
7. unikernel
👍2
Linux commands - basics
https://contabo.com/blog/linux-port-forwarding-with-iptables/
sudo iptables -t nat -A PREROUTING -p tcp --dport 11434 -j DNAT --to-destination 192.168.1.100:11434
sudo iptables -A FORWARD -p tcp -d 192.168.1.100 --dport 11434 -j ACCEPT
sudo iptables -t nat -A POSTROUTING -j MASQUERADE
sudo apt-get install -y --only-upgrade nginx
echo "" | sudo -S service phpx.x-fpm reload
watch -n1 "docker exec -i mysql mysql -u root -p'pass' -e 'SHOW FULL PROCESSLIST;'"
👍1