Browse Source

🐕woozie

windhamdavid 2 years ago
parent
commit
9b88688876
2 changed files with 38 additions and 14 deletions
  1. 13 1
      docs/computers/ovid.md
  2. 25 13
      docs/computers/woozie.md

+ 13 - 1
docs/computers/ovid.md

@@ -8,10 +8,13 @@
 
 ### Log
 
-**23/02/15** - Added MariaDB to recent servers and wanted to match versions. Noticed that my old plist for httpd was not starting alongside of the default Apache. Had to add php8.1 to match servers since 8.2 is now the default php. Other upgrades noted below.
+**23/02/19** - Homebrew v4.0.1. Added MariaDB v10.11.2 to some recent servers and wanted to match versions. Noticed that my old plist for httpd was not starting alongside of the default Apache. Also had to keep a ruby/python/php matches. Other upgrades noted below:
 
 ```bash
 david@ovid🏛 :/opt/homebrew/var/log(master○) » brew outdated
+cmocka (1.1.5) < 1.1.6
+composer (2.5.3) < 2.5.4
+curl (7.87.0) < 7.88.0_1
 dav1d (1.0.0) < 1.1.0
 dbus (1.14.4) < 1.14.6
 gh (2.21.2) < 2.23.0
@@ -19,11 +22,20 @@ go (1.19.5) < 1.19.6
 guile (3.0.8_4) < 3.0.9
 heroku/brew/heroku (7.67.1) < 7.68.1
 htop (3.2.1) < 3.2.2
+libheif (1.14.2_1) < 1.15.1
+liblinear (2.45) < 2.46
+mariadb (10.10.3) < 10.11.2
+node (19.6.0) < 19.6.1
+node@14 (14.21.2_1) < 14.21.3
+node@16 (16.19.0_1) < 16.19.1
 nss (3.87) < 3.88.1
 openssl@3 (3.0.7) < 3.0.8
 pandoc (2.19.2) < 3.1
+php (8.2.2) < 8.2.3
 postgresql@14 (14.6_1, 14.6_1) < 14.7
 pyenv (2.3.11) < 2.3.13
+python@3.10 (3.10.4, 3.10.10) < 3.10.10_1
+python@3.11 (3.11.2) < 3.11.2_1
 python@3.9 (3.9.13_1) < 3.9.16
 ruby-build (20221225) < 20230208.1
 rust (1.66.1) < 1.67.1

+ 25 - 13
docs/computers/woozie.md

@@ -10,26 +10,27 @@
 
 ### Todo
 
-- watch logs for bots/IPs & block with custom.d
 - monitor logs on reboot
-- ~~email settings for code.daw~~
+  - watch logs for bots/IPs & block
+  - apache/nginx combined log for monitor.
+  - [lifeasweknowit.com](http://lifeasweknowit.com) is still pointed to the IP
 - custom apache/nginx error pages
-- gogs submodules issue - <https://github.com/gogs/gogs/issues/6436>
-  - patch has landed in 0.13.0+dev, and will be back-ported to 0.12.11 (no ETA).
-- [lifeasweknowit.com](http://lifeasweknowit.com) is still pointed to the IP
-- daw.com/wik/mail/reader/bookmarks
-  - migrating to php v7.4.33 test with 8.1
-  - add redis caching for daw
-- radio.daw stream.daw
+- code.daw 
+  - ~~email settings for code.daw~~
+  - gogs submodules issue - <https://github.com/gogs/gogs/issues/6436>
+    - patch has landed in 0.13.0+dev, and will be back-ported to 0.12.11 (no ETA).
+- ~~daw.com/wik/mail/reader/bookmarks~~
+  - migrating to php v7.4.33 need to test with 8.1
+  - add Redis caching for daw
+- ~~radio.daw stream.daw~~
   - add a feature to convert rmtp stream to icecast
   - auth for redis radio chat
   - ssl support for icecast
-- block port for rmtp with auth
+- block/switch port for rmtp with auth
 - ~~add nginx to monit~~
 - Monit actions redirect to root /url
-- longview MariaDB conf
-  - ticket submitted about <https://github.com/linode/longview/pull/49>
-- apache/nginx combined log for monitor.
+- ~~longview MariaDB conf~~
+  - ~~ticket submitted about <https://github.com/linode/longview/pull/49>~~
 - ~~upgrade openssl <https://nvd.nist.gov/vuln/detail/CVE-2023-0286>~~
   - see [#Security ESM Pro](#security)
 - configure remote db connections for Redis/MariaDB
@@ -321,6 +322,7 @@ sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (monit)
 sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (monitor)
 sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (ssh)
 sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (rmtp proxy)
+sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (stream proxy)
 sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (nginx proxy)
 sudo iptables -A INPUT -p tcp --dport #### -j ACCEPT (node proxy)
 
@@ -381,6 +383,16 @@ sudo netstat -ntlp | grep -i 3000
 
 ```bash
 sudo systemctl start longview
+
+# mariadb support
+sudo mysql -u root -p
+mysql> CREATE USER '************'@'localhost' IDENTIFIED BY '****************';
+mysql> Flush Privileges;
+sudo vi /etc/linode/longview.d/MySQL.conf
+sudo vi /opt/linode/longview/Linode/DataGetter/Applications/MySQL.pm 
+-> our $SIGNATURES = ['mariadbd']
+sudo systemctl restart longview
+
 ```
 
 ### GoAccess