Academia JavaEE Workspace in Raspbian: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 17: | Line 17: | ||
===Schema=== | ===Schema=== | ||
< | <syntaxhighlight lang="sql"> | ||
-- sudo su; su - postgres; psql | -- sudo su; su - postgres; psql | ||
CREATE DATABASE academia; | CREATE DATABASE academia; | ||
CREATE USER academia WITH ENCRYPTED PASSWORD 'academia'; | CREATE USER academia WITH ENCRYPTED PASSWORD 'academia'; | ||
GRANT ALL PRIVILEGES ON DATABASE academia TO academia; | GRANT ALL PRIVILEGES ON DATABASE academia TO academia; | ||
</ | </syntaxhighlight> | ||
sudo su; su - postgres | sudo su; su - postgres | ||
| Line 31: | Line 31: | ||
===Delete=== | ===Delete=== | ||
< | <syntaxhighlight lang="sql"> | ||
-- sudo su; su - postgres; psql | -- sudo su; su - postgres; psql | ||
REVOKE CONNECT ON DATABASE academia FROM public; | REVOKE CONNECT ON DATABASE academia FROM public; | ||
| Line 37: | Line 37: | ||
FROM pg_stat_activity | FROM pg_stat_activity | ||
WHERE pg_stat_activity.datname in ('academia'); | WHERE pg_stat_activity.datname in ('academia'); | ||
</ | </syntaxhighlight> | ||
sudo su; su - postgres | sudo su; su - postgres | ||
| Line 43: | Line 43: | ||
kill -9 PID | kill -9 PID | ||
< | <syntaxhighlight lang="sql"> | ||
-- sudo su; su - postgres; psql | -- sudo su; su - postgres; psql | ||
DROP DATABASE IF EXISTS academia; | DROP DATABASE IF EXISTS academia; | ||
</ | </syntaxhighlight> | ||
===PgAdmin4=== | ===PgAdmin4=== | ||
< | <syntaxhighlight lang="bash"> | ||
apt install curl | apt install curl | ||
curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add | curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add | ||
| Line 55: | Line 55: | ||
/etc/apt/sources.list.d/pgadmin4.list && apt update' | /etc/apt/sources.list.d/pgadmin4.list && apt update' | ||
apt install pgadmin4-desktop | apt install pgadmin4-desktop | ||
</ | </syntaxhighlight> | ||
==Redis== | ==Redis== | ||
< | <syntaxhighlight lang="bash" highlight="13"> | ||
apt install redis-server | apt install redis-server | ||
nano /etc/redis/redis.conf | nano /etc/redis/redis.conf | ||
| Line 74: | Line 74: | ||
END_COMMENT | END_COMMENT | ||
systemctl status redis-server | systemctl status redis-server | ||
</ | </syntaxhighlight> | ||
==Workspace== | ==Workspace== | ||
< | <syntaxhighlight lang="bash"> | ||
mkdir -p $HOME/chorke | mkdir -p $HOME/chorke | ||
mkdir -p /opt/dev/$USER/chorke/academia | mkdir -p /opt/dev/$USER/chorke/academia | ||
| Line 86: | Line 86: | ||
ls -lah $HOME/chorke | ls -lah $HOME/chorke | ||
nano ~/.bashrc | nano ~/.bashrc | ||
</ | </syntaxhighlight> | ||
==Editor== | ==Editor== | ||
< | <syntaxhighlight lang="bash"> | ||
sudo apt install apt-transport-https | sudo apt install apt-transport-https | ||
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | ||
| Line 95: | Line 95: | ||
sudo apt update;sudo apt install sublime-text | sudo apt update;sudo apt install sublime-text | ||
sudo snap install notepad-plus-plus | sudo snap install notepad-plus-plus | ||
</ | </syntaxhighlight> | ||
==Git SCM== | ==Git SCM== | ||
| Line 135: | Line 135: | ||
User git | User git | ||
END_COMMENT | END_COMMENT | ||
</ | </syntaxhighlight> | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
| Line 212: | Line 212: | ||
timedatectl set-timezone 'Asia/Kuala_Lumpur' | timedatectl set-timezone 'Asia/Kuala_Lumpur' | ||
< | <syntaxhighlight lang="bash"> | ||
#nano ~/.bashrc | #nano ~/.bashrc | ||
#nano ~/.zshenv | #nano ~/.zshenv | ||
| Line 219: | Line 219: | ||
export ACADEMIA_WSS="$HOME/chorke/academia" | export ACADEMIA_WSS="$HOME/chorke/academia" | ||
export ACADEMIA_LOG_PATH="$HOME/.chorke/academia/var/http/logs" | export ACADEMIA_LOG_PATH="$HOME/.chorke/academia/var/http/logs" | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="bash"> | ||
source ~/.bashrc | source ~/.bashrc | ||
source ~/.profile | source ~/.profile | ||
| Line 228: | Line 228: | ||
source ~/.zshenv | source ~/.zshenv | ||
source ~/.zprofile/.zlogin | source ~/.zprofile/.zlogin | ||
</ | </syntaxhighlight> | ||
'''git stashing''' | '''git stashing''' | ||
| Line 234: | Line 234: | ||
git add .; git commit -m "new feature added"; git push | git add .; git commit -m "new feature added"; git push | ||
< | <syntaxhighlight lang="bash"> | ||
ssh-keygen -p -f ~/.ssh/git_academia_chorke_org_rsa | ssh-keygen -p -f ~/.ssh/git_academia_chorke_org_rsa | ||
: <<'END_COMMENT' | : <<'END_COMMENT' | ||
| Line 243: | Line 243: | ||
Your identification has been saved with the new passphrase. | Your identification has been saved with the new passphrase. | ||
END_COMMENT | END_COMMENT | ||
</ | </syntaxhighlight> | ||
===Postgres SSH Dump=== | ===Postgres SSH Dump=== | ||
< | <syntaxhighlight lang="bash"> | ||
sudo su | sudo su | ||
mkdir /var/lib/postgresql/.ssh | mkdir /var/lib/postgresql/.ssh | ||
| Line 260: | Line 260: | ||
cd ~/chorke/academia/assets | cd ~/chorke/academia/assets | ||
sh copy_dbs_staging2staging_ebis.sh | sh copy_dbs_staging2staging_ebis.sh | ||
</ | </syntaxhighlight> | ||
'''comment and uncomment sql''' | '''comment and uncomment sql''' | ||
Revision as of 16:30, 22 November 2025
Java
apt install openjdk-8-jdk-headless apt install nodejs apt install maven apt install npm apt install ant
PostgreSQL
Install
apt install postgresql postgresql-contrib sudo su; su - postgres createuser postgres; createdb postgres createuser root; createdb root createuser pi; createdb pi exit; exit
Schema
-- sudo su; su - postgres; psql
CREATE DATABASE academia;
CREATE USER academia WITH ENCRYPTED PASSWORD 'academia';
GRANT ALL PRIVILEGES ON DATABASE academia TO academia;
sudo su; su - postgres psql academia < academia.sql psql -h db00.chorke.org -p 5432 -d academia -U academia psql -h db00.chorke.org -p 5432 -d academia -U academia -W -f academia.sql pg_restore -h db00.chorke.org -p 5432 -d academia -U academia academia.dump
Delete
-- sudo su; su - postgres; psql
REVOKE CONNECT ON DATABASE academia FROM public;
SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE pg_stat_activity.datname in ('academia');
sudo su; su - postgres ps -ef | grep postgres kill -9 PID
-- sudo su; su - postgres; psql
DROP DATABASE IF EXISTS academia;
PgAdmin4
apt install curl
curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add
sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > \
/etc/apt/sources.list.d/pgadmin4.list && apt update'
apt install pgadmin4-desktop
Redis
apt install redis-server
nano /etc/redis/redis.conf
: <<'END_COMMENT'
# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
# supervised no - no supervision interaction
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
# supervised auto - detect upstart or systemd method based on
# UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
# They do not enable continuous liveness pings back to your supervisor.
supervised systemd
END_COMMENT
systemctl status redis-server
Workspace
mkdir -p $HOME/chorke
mkdir -p /opt/dev/$USER/chorke/academia
chown $USER:$USER -R /opt/dev/$USER
export ACADEMIA_WSS="$HOME/chorke/academia"
ln -s /opt/dev/$USER/chorke/academia $ACADEMIA_WSS
ls -lah $HOME/chorke
nano ~/.bashrc
Editor
sudo apt install apt-transport-https
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt update;sudo apt install sublime-text
sudo snap install notepad-plus-plus
Git SCM
ssh-keygen -t rsa -b 4096 -C "email.id@academia.chorke.org"
: <<'END_COMMENT'
Generating public/private rsa key pair.
Enter file in which to save the key (/home/user/.ssh/id_rsa): /home/user/.ssh/git_academia_chorke_org_rsa
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/user/.ssh/git_academia_chorke_org_rsa
Your public key has been saved in /home/user/.ssh/git_academia_chorke_org_rsa.pub
The key fingerprint is:
SHA256:TXBbBINcPcVtdVFRjs/P+jaxMFAIwr3uqdlt8tmrLVQ email.id@academia.chorke.org
The key's randomart image is:
+---[RSA 4096]----+
| .oo+*++o.+@|
| .++ =o..o+|
| + .....|
| + . E o |
| S . o o|
| . . o o.|
| . o o =|
| o+.o+ +.|
| o..+=o+ooo|
+----[SHA256]-----+
END_COMMENT
ls -lah ~/.ssh/
cat < ~/.ssh/git_academia_chorke_org_rsa.pub
nano ~/.ssh/config
: <<'END_COMMENT'
Host git.academia.chorke.org
HostName git.academia.chorke.org
PreferredAuthentications publickey
IdentityFile ~/.ssh/git_academia_chorke_org_rsa
User git
END_COMMENT
git config --global user.email "email.id@academia.chorke.org"
git config --global user.name "FULL NAME"
ssh -vT git.academia.chorke.org
Docker
cat <<'EXE' | sudo bash
apt-get update
apt-get install -y ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
apt-get clean
curl -fsSL https://download.docker.com/linux/debian/gpg| sudo tee /etc/apt/keyrings/docker.asc >/dev/null
chmod a+r /etc/apt/keyrings/docker.asc
DISTRIBUTION=$(. /etc/os-release && echo "${VERSION_CODENAME}")
cat << SRC | sudo tee /etc/apt/sources.list.d/docker.sources >/dev/null
Types: deb
Suites: ${DISTRIBUTION}
Components: stable
Signed-By: /etc/apt/keyrings/docker.asc
URIs: https://download.docker.com/linux/debian
SRC
apt-get update
apt-get remove -y $(dpkg --get-selections docker.io docker-compose docker-doc podman-docker containerd runc | cut -f1)
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
apt-get clean
systemctl enabled --start docker
systemctl status docker
systemctl start docker
EXE
cat << EXE | sudo bash
usermod -aG docker ${USER}
echo 'id -nG'|sudo -i -u ${USER} bash
echo 'docker ps -a'|sudo -i -u ${USER} bash
EXE
Knowledge
disk usage du -h /var du -sh /var du -csh ~/Do* du -csh /var/log /var/lib du -sh --apparent-size /var/lib du -h /var/ | sort -rh | head -5
snap install telegram-sergiusens snap install notepad-plus-plus snap install skype --classic sudo apt install gtkhash apt install net-tools snap install postman ls -lah ~/.local/share/applications/ ls -lah ~/.config/autostart/ ls -lah ~/.local/share/ rm -rf ~/.local/share/applications/jetbrains-toolbox.desktop rm -rf ~/.config/autostart/jetbrains-toolbox.desktop rm -rf ~/.local/share/JetBrains/Toolbox
reset time zone timedatectl set-ntp true timedatectl set-ntp false timedatectl set-time '2021-12-31 23:58:00' timedatectl set-timezone 'Asia/Kuala_Lumpur'
#nano ~/.bashrc
#nano ~/.zshenv
#nano ~/.profile
#nano ~/.bash_profile
export ACADEMIA_WSS="$HOME/chorke/academia"
export ACADEMIA_LOG_PATH="$HOME/.chorke/academia/var/http/logs"
source ~/.bashrc
source ~/.profile
source ~/.bash_profile
source ~/.zshenv
source ~/.zprofile/.zlogin
git stashing git stash; git checkout -b new_branch; git stash pop git add .; git commit -m "new feature added"; git push
ssh-keygen -p -f ~/.ssh/git_academia_chorke_org_rsa
: <<'END_COMMENT'
Enter old passphrase:
Key has comment 'email.id@academia.chorke.org'
Enter new passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved with the new passphrase.
END_COMMENT
Postgres SSH Dump
sudo su
mkdir /var/lib/postgresql/.ssh
cp /home/pi/.ssh/cid_academia_rsa* /var/lib/postgresql/.ssh/
cp /home/pi/.ssh/config /var/lib/postgresql/.ssh/
cp -r /home/pi/chorke /var/lib/postgresql/
chown postgres:postgres -R /var/lib/postgresql/.ssh
chown postgres:postgres -R /var/lib/postgresql/chorke
su - postgres
cd ~/chorke/academia/assets
sh copy_dbs_staging2staging_ebis.sh
comment and uncomment sql sed -i -e 's|^|-- |g' src/main/resources/db/migration/*.sql sed -i -e 's|^-- ||g' src/main/resources/db/migration/*.sql