pythonGit private repository

I built an online editor for modifying some files. They need to be checked into git after they are edited. Unfortunately there is no direct way of setting the username and password for the git repository. Instead you need to use http authentication, and put the username and password into the URL of the repository. This is just a little code snippet of what I needed to do to update the file. I left out the middle part updating the file, instead just put some junk code in to add a new line.

 

import git
import urllib.parse 
# Set the variables we are going to need
# These are completely made up, so won't run as written
l_git_username = 'amyers'
l_git_password = urllib.parse.quote('myP@$$W0rd')
l_git_repo = 'https://git.balddba.com/scm/or/someproject.git'
l_tmp_dir = '/tmp/gitproject/'
l_file_to_update = tns_tmp_dir + 'pyfile.py'

# insert the username and password, URL Encode any special characters
l_git_repo = l_repo[:8] + l_git_username + ':' + l_git_password + '@' + l_repo[8:]

# Clone the repository
git.Repo.clone_from(l_git_repo, l_tmp_dir, env={'GIT_SSL_NO_VERIFY': '1'})
repo = git.Repo(l_tmp_dir)

#Make some file modification
with open(l_file_to_update, 'a') as f:
  f.write("This is a new line\n")

# Commit the file back to the repository
l_commit_message = 'File modified in python'
repo.index.commit(l_commit_message)
origin = repo.remote(name='origin')
origin.push(env={'GIT_SSL_NO_VERIFY': '1'})

cx_Oracle ORA-24418

I am writing a web portal for a bunch of database tasks, and storing information in an oracle database. I am creating a connection pool but seeing this error.

> File "C:\Users\aar00287\PycharmProjects\oracle-flask\src\um\api\app.py", line 86, in getDbHostname
    db = pool.acquire()
         |    -> <method 'acquire' of 'cx_Oracle.SessionPool' objects>
         -> <cx_Oracle.SessionPool object at 0x00000262107B81B0>

cx_Oracle.DatabaseError: ORA-24418: Cannot open further sessions.
2020-04-30T08:52:35.861481-0400 ERROR ORA-24418: Cannot open further sessions.
Traceback (most recent call last):

This looks like an ORA-24418 out of sessions error. However when I check the database, there are only 120 of the 1200 available sessions being consumed. The alert logs don’t show any error at all which is really confusing.

After some digging, I found a bug report which states you will an ORA-24418 error if the pool is in the process of being resized.

Here is my session pool creation

pools = cx_Oracle.SessionPool(l_user,l_pass, l_server + '/' + l_service, encoding="UTF-8", min=5, max=50, increment=1, threaded=True)

adding the set mode parameter to the pool creation will cause a call to wait while a connection pool is started or resized instead of immediately erring out.

pool = cx_Oracle.SessionPool(l_user,l_pass, l_server + '/' + l_service, encoding="UTF-8", min=5, max=50, increment=1, threaded=True, setmode = cx_Oracle.SPOOL_ATTRVAL_WAIT)

Problem solved

Automating with Telnet

I have a stupid problem, I have a Bitcoin ASIC called a Hex miner. For some reason every 12 hours the thing slows down from 24GH/sec to 5GH/sec. The only way I have found to solve the problem is to power cycle the controller and the unit itself. This would be a pain since I have it in my basement. However I salvaged some old Bay Technologies PDUs in my rack, which means I can power outlets on and off through a telnet session.

I did a little searching and learned how to do some scripting with the unix program “expect”

This is a very specific script, but it did what I need it to do:

#!/usr/bin/expect
spawn telnet xxx.xxx.xxx.xxx 23
expect "Enter Selection>"
send 1\r
expect "RPC-3>"
send "off 1\r"
expect "Turn OFF HEX-WRT? (Y/N)>"
send Y\r
expect "RPC-3>"
send "off 2\r"
expect "Turn OFF HEX-PWR? (Y/N)>"
send "Y\r"
expect "RPC-3>"
send "on 2\r"
expect "Turn ON HEX-PWR? (Y/N)>"
send "Y\r"
expect "RPC-3>"
send "on 1\r"
expect "Turn ON HEX-WRT? (Y/N)>"
send "Y\r"
expect "RPC-3>"
send "menu\r"
expect "Enter Selection>"
send "6\r"

It blazes through resetting the outlets.

        RPC-3 Telnet Host
    Revision F 4.20a, (C) 1999
    Bay Technical Associates
    Unit ID: RPC3-2
  Option(s) installed:
  True RMS Current
  Internal Temperature


  RPC-3 Menu:

    1)...Outlet Control
    2)...Manage Users
    3)...Configuration
    4)...Unit Status
    5)...Reset Unit
    6)...Logout

  Enter Selection>1
  True RMS current:  2.0 Amps
  Maximum Detected:  2.3 Amps

  Internal Temperature: 36.0 C

  Circuit Breaker: On 

  Selection   Outlet    Outlet   Power
    Number     Name     Number   Status
      1       HEX-WRT     1       On 
      2       HEX-PWR     2       On 
      3       Outlet 3    3       On 
      4       Outlet 4    4       On 
      5       Outlet 5    5       On 
      6       Outlet 6    6       On 
      7       Outlet 7    7       On 
      8       Outlet 8    8       On 

  Type "Help" for a list of commands

  RPC-3>off 1

  Turn OFF HEX-WRT? (Y/N)>Y
  True RMS current:  2.1 Amps
  Maximum Detected:  2.3 Amps

  Internal Temperature: 36.0 C

  Circuit Breaker: On 

  Selection   Outlet    Outlet   Power
    Number     Name     Number   Status
      1       HEX-WRT     1       Off
      2       HEX-PWR     2       On 
      3       Outlet 3    3       On 
      4       Outlet 4    4       On 
      5       Outlet 5    5       On 
      6       Outlet 6    6       On 
      7       Outlet 7    7       On 
      8       Outlet 8    8       On 

  Type "Help" for a list of commands

  RPC-3>off 2

  Turn OFF HEX-PWR? (Y/N)>Y
  True RMS current:  0.6 Amps
  Maximum Detected:  2.3 Amps

  Internal Temperature: 36.0 C

  Circuit Breaker: On 

  Selection   Outlet    Outlet   Power
    Number     Name     Number   Status
      1       HEX-WRT     1       Off
      2       HEX-PWR     2       Off
      3       Outlet 3    3       On 
      4       Outlet 4    4       On 
      5       Outlet 5    5       On 
      6       Outlet 6    6       On 
      7       Outlet 7    7       On 
      8       Outlet 8    8       On 

  Type "Help" for a list of commands

  RPC-3>on 2

  Turn ON HEX-PWR? (Y/N)>Y
  True RMS current:  0.7 Amps
  Maximum Detected:  2.3 Amps

  Internal Temperature: 36.0 C

  Circuit Breaker: On 

  Selection   Outlet    Outlet   Power
    Number     Name     Number   Status
      1       HEX-WRT     1       Off
      2       HEX-PWR     2       On 
      3       Outlet 3    3       On 
      4       Outlet 4    4       On 
      5       Outlet 5    5       On 
      6       Outlet 6    6       On 
      7       Outlet 7    7       On 
      8       Outlet 8    8       On 

  Type "Help" for a list of commands

  RPC-3>on 1

  Turn ON HEX-WRT? (Y/N)>Y
  True RMS current:  0.7 Amps
  Maximum Detected:  2.3 Amps

  Internal Temperature: 36.0 C

  Circuit Breaker: On 

  Selection   Outlet    Outlet   Power
    Number     Name     Number   Status
      1       HEX-WRT     1       On 
      2       HEX-PWR     2       On 
      3       Outlet 3    3       On 
      4       Outlet 4    4       On 
      5       Outlet 5    5       On 
      6       Outlet 6    6       On 
      7       Outlet 7    7       On 
      8       Outlet 8    8       On 

  Type "Help" for a list of commands

  RPC-3>menu

  RPC-3 Menu:

    1)...Outlet Control
    2)...Manage Users
    3)...Configuration
    4)...Unit Status
    5)...Reset Unit
    6)...Logout
  Enter Selection>

[root@rackable1 scripts]#