Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
osdse [2025/03/20 14:43] – [Apache] david | osdse [2025/04/03 11:40] (current) – [Python] david | ||
---|---|---|---|
Line 60: | Line 60: | ||
===== Python ===== | ===== Python ===== | ||
If you need multiple versions/ | If you need multiple versions/ | ||
+ | |||
+ | ==== Basic (one python) ==== | ||
Ubuntu searching python versions | Ubuntu searching python versions | ||
Line 83: | Line 85: | ||
</ | </ | ||
+ | ==== pyenv (multiple python versions) ==== | ||
+ | |||
+ | Prerequisite for '' | ||
+ | <code bash> | ||
+ | sudo apt-get install build-essential | ||
+ | </ | ||
+ | |||
+ | Install '' | ||
+ | <code bash> | ||
+ | curl https:// | ||
+ | </ | ||
+ | |||
+ | Make the changes to '' | ||
+ | |||
+ | Then install the python version you wish to have: | ||
+ | <code bash> | ||
+ | pyenv install 3.11 | ||
+ | </ | ||
+ | |||
+ | View python versions: | ||
+ | <code bash> | ||
+ | pyenv versions | ||
+ | </ | ||
===== PostgreSQL ===== | ===== PostgreSQL ===== | ||
Line 162: | Line 187: | ||
</ | </ | ||
+ | ==== Website & Data Viewer ==== | ||
+ | |||
+ | <code bash> | ||
+ | cd / | ||
+ | sudo vi index.html | ||
+ | |||
+ | </ | ||
+ | <file html index.html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | |||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta name=" | ||
+ | < | ||
+ | <link rel=" | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <ul> | ||
+ | < | ||
+ | < | ||
+ | </ul> | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | Adminer User on DB: | ||
+ | <code bash> | ||
+ | sudo -i -u postgres psql | ||
+ | </ | ||
+ | <code sql> | ||
+ | CREATE USER simple_shop_adminer_reader | ||
+ | |||
+ | \c simple_shop; | ||
+ | |||
+ | -- Grant privileges for simple_shop_adminer_reader (read-only access) | ||
+ | GRANT CONNECT ON DATABASE simple_shop TO simple_shop_adminer_reader; | ||
+ | GRANT USAGE ON SCHEMA public TO simple_shop_adminer_reader; | ||
+ | GRANT pg_read_all_data TO simple_shop_adminer_reader; | ||
+ | </ | ||
+ | |||
+ | Adminer: | ||
+ | <code bash> | ||
+ | sudo mkdir -p sample_data_explore | ||
+ | cd sample_data_explore | ||
+ | sudo wget https:// | ||
+ | sudo vi index.php | ||
+ | </ | ||
+ | |||
+ | <file php index.php> | ||
+ | <?php | ||
+ | function adminer_object() { | ||
+ | |||
+ | class AdminerSoftware extends Adminer { | ||
+ | |||
+ | function name() { | ||
+ | // custom name in title and heading | ||
+ | return ' | ||
+ | } | ||
+ | |||
+ | function database() { | ||
+ | // database name, will be escaped by Adminer | ||
+ | return ' | ||
+ | } | ||
+ | |||
+ | function loginForm() { | ||
+ | echo "< | ||
+ | echo $this-> | ||
+ | echo $this-> | ||
+ | echo "</ | ||
+ | echo "< | ||
+ | echo checkbox(" | ||
+ | } | ||
+ | |||
+ | } | ||
+ | |||
+ | return new AdminerSoftware; | ||
+ | } | ||
+ | |||
+ | include ' | ||
+ | |||
+ | </ | ||
====== Junk ====== | ====== Junk ====== | ||