Skip to content

Instantly share code, notes, and snippets.

View tbvinh's full-sized avatar
🧑‍🍼
I may be slow to respond.

Vinh Tran tbvinh

🧑‍🍼
I may be slow to respond.
  • Ho Chi Minh - Vietnam
View GitHub Profile
@tbvinh
tbvinh / subdomain to directory.txt
Last active December 26, 2022 16:44
.htaccess rewrite subdomain to directory
a2enmod vhost_alias
<VirtualHost _default_:443>
ServerAdmin webmaster@localhost
ServerName www.a2pos.com
ServerAlias a2pos.com
DocumentRoot /var/www/wwwa2pos.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
@tbvinh
tbvinh / git hub branch
Created November 24, 2020 10:45
git hub branch
git checkout -b parkmandroid-feature_navigation_3rd_party__vinh_tran
git push -u origin feature_notify_expiring_card__vinh_tran
git add .
git commit -m "localization and adjust toast message"
git push -b parkmandroid-feature_navigation_3rd_party__vinh_tran
git branch --set-upstream-to=origin/parkmandroid-feature_navigation_3rd_party__vinh_tran parkmandroid-feature_navigation_3rd_party__vinh_tran
adb devices -l
xcrun instruments -s devices
@tbvinh
tbvinh / Deploy Payara Micro
Created December 25, 2020 04:18
Deploy Payara Micro
java -jar payara-micro-5.2020.7.jar --deploy testspring-0.0.1-SNAPSHOT.war --port 9800 --contextroot xxx
@tbvinh
tbvinh / Change a process to nohup
Created December 25, 2020 10:13
Change a process to nohup
ctrl-z
bg
disown -h %1
jobs
@tbvinh
tbvinh / Cef Java
Created January 28, 2021 10:39
Cef Java
https://github.com/jcefbuild/jcefbuild/tags
@tbvinh
tbvinh / backup restore postgres.txt
Last active October 5, 2021 04:53
backup restore postgres - create quartz
1. Create .pgpass :https://www.postgresql.org/docs/current/libpq-pgpass.html
localhost:5432:postgres:12345
2. chmod 600 ~/.pgpass
3. pg_dump -U postgres -h localhost -p 5432 -d lxerpdb | gzip -c > postgre-backup-2021.gz
Restore
1.
sudo service postgresql stop
sudo service postgresql start
1. sudo wget http://download.oracle.com/glassfish/5.0.1/nightly/latest-glassfish.zip
2. unzip to /usr/share/glassfish5
(ln -s /usr/share/glassfish5 ./glassfish5)
3. remove sun.* in $glassfish/modules/endorsed/grizzly-npn-bootstrap.jar
zip -d $glassfish/modules/endorsed/grizzly-npn-bootstrap.jar sun/*
4. run ./asadmin
@tbvinh
tbvinh / Install java 32 on Linux Ubuntu 64.txt
Last active April 9, 2021 04:34
Install java 32 on Linux Ubuntu 64
1. check current java support
java -d64 -version
java -d32 -version
2. Print architect 23/64
dpkg --print-architecture
dpkg --print-foreign-architectures
3. Add 32 bit support
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install ia32-libs
@tbvinh
tbvinh / Proxy Apache Glassfish.txt
Created February 2, 2021 14:51
Proxy Apache Glassfish
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
RewriteEngine On
RewriteCond %{HTTP:Connection} Upgrade [NC]
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteRule /(.*) ws://127.0.0.1:8080/$1 [P,L]