docker images
docker images -a
docker images -f dangling=true
bin/kafka-topics.sh --list --zookeeper 172.19.0.8:2181
bin/kafka-topics.sh --describe --zookeeper 172.19.0.8:2181 --topic customChannel
bin/kafka-topics.sh --zookeeper 172.19.0.8:2181 --delete --topic customChannel
bin/kafka-topics.sh --create --zookeeper 172.19.0.8:2181 --replication-factor 1 --partitions 1 --topic greetings
$ssh-keygen -t rsa
# Enter location and file name like (/Users/pjadda/.ssh/minishift_rsa), do not use default files
#Passphrase is optional
$ssh [email protected] mkdir -p .ssh
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
~/.bash_profile
file (~/.bash_rc
if use Linux) and add the followingif [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
Name => WINDOWS10
Format => MS-DOS (FAT)
Scheme => GUID Partition Map
sudo mysql
USE mysql;
UPDATE user SET authentication_string=PASSWORD('YOUR_PASSWORD') WHERE User='root';
UPDATE user SET plugin="mysql_native_password";
FLUSH PRIVILEGES;
quit;
Static resources can be configured using two approaches in Spring Boot
addResourceHandlers()
methodFirst configure your SpringSecurity class to accept requests to this resources
@Override
public void configure(WebSecurity web)