This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb devices -l | |
xcrun instruments -s devices |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar payara-micro-5.2020.7.jar --deploy testspring-0.0.1-SNAPSHOT.war --port 9800 --contextroot xxx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ctrl-z | |
bg | |
disown -h %1 | |
jobs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/jcefbuild/jcefbuild/tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |