- Install I2P
- Download I2P
java -jar i2pinstall_*.jar
- Install Java Service Wrapper
- Download Community Version
tar xzf wrapper-*.tar.gz
cp wrapper*/bin/wrapper /Applications/i2p/i2psvc
cp wrapper*/lib/wrapper.jar /Applications/i2p/lib
cp wrapper*/lib/libwrapper.so /Applications/i2p/lib
- Try to start I2P using
/Applications/i2p/i2prouter start
or Start I2P Router app
- Remove osxfuse if installed via homebrew:
brew uninstall osxfuse
-
Install the latest version of "FUSE for OS X" from http://osxfuse.github.io. When installing "FUSE for OS X" make sure to select the "MacFUSE Compatibility Layer" option.
-
Reboot (optional but recommended by osxfuse)
- Edit /Library/Java/JavaVirtualMachines/jdk1.8.0_YOUR_VERSION.jdk/Contents/Info.plist_ and change
<key>JVMCapabilities</key>
<array>
<string>CommandLine</string>
</array>
To:
JVMCapabilities
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
{ | |
"draw_white_space": "selection", | |
"fallback_encoding": "Cyrillic (Windows 1251)", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"open_files_in_new_window": false, | |
"trim_trailing_white_space_on_save": true | |
} |
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
# top-most EditorConfig file | |
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 | |
indent_style = space | |
tab_width = 4 | |
trim_trailing_whitespace = true |
/Applications/JDK\ Mission\ Control.app/Contents/MacOS/jmc -vm ~/.sdkman/candidates/java/14.0.0.hs-adpt/lib/libjli.dylib
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
docker run -d \ | |
--name kafkaui \ | |
-p 8082:8080 \ | |
-e KAFKA_CLUSTERS_0_NAME=kafka-dev \ | |
-e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS="b-1.us-east-1.amazonaws.com:9092,b-2.us-east-1.amazonaws.com:9092,b-3.us-east-1.amazonaws.com:9092" \ | |
-e KAFKA_CLUSTERS_1_NAME=kafka-prod \ | |
-e KAFKA_CLUSTERS_1_BOOTSTRAPSERVERS="b-1.us-east-1.amazonaws.com:9092,b-2.us-east-1.amazonaws.com:9092,b-3.us-east-1.amazonaws.com:9092" \ | |
provectuslabs/kafka-ui:master |
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
docker run -d \ | |
--name kafkaui \ | |
-p 8082:8080 \ | |
-e KAFKA_CLUSTERS_0_NAME=kafka-dev-0 \ | |
-e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS="b-1.???.kafka.us-east-1.amazonaws.com:9092" \ | |
-e KAFKA_CLUSTERS_1_NAME=kafka-prod \ | |
-e KAFKA_CLUSTERS_1_BOOTSTRAPSERVERS="b-1.???.kafka.us-east-1.amazonaws.com:9092,b-2.???.kafka.us-east-1.amazonaws.com:9092" \ | |
kafbat/kafka-ui:main |