If your ./configure (e.g. for pgbouncer) terminates with the following error despite openssl being installed:
checking for OpenSSL... configure: error: not found
Then, restart it like follows:
./configure --with-openssl=/usr/local/opt/openssl
checking for OpenSSL... configure: error: not found
Then, restart it like follows:
./configure --with-openssl=/usr/local/opt/openssl
[jerome@jeroboam] > sudo lsof -PiTCP -sTCP:LISTEN | grep 6432
pgbouncer 10533 jerome 9u IPv6 0x8678a9be8d9262f5 0t0 TCP *:6432 (LISTEN)
pgbouncer 10533 jerome 10u IPv4 0x8678a9be9e2f23dd 0t0 TCP *:6432 (LISTEN)
Host bastion HostName bastion-01.golgoth.com User jgallinari Host remote1 HostName remote1.toto.swir User jgallinari ProxyCommand ssh jgallinari@bastion -W %h:%pThen ssh remote1 should do it.
[jerome@jeroboam] > sysctl -n machdep.cpu.brand_string
Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz
AvUsageQuarantineBuildProject: Type: AWS::CodeBuild::Project Condition: Preprod Properties: Name: av-usage-quarantine-build ServiceRole: !GetAtt AvUsageQuarantineBuildProjectRole.Arn Artifacts: Type: CODEPIPELINE Name: av-usage-quarantine Environment: Type: LINUX_CONTAINER ComputeType: BUILD_GENERAL1_SMALL Image: aws/codebuild/java:openjdk-8 EnvironmentVariables: - Name: S3_BUCKET Value: !ImportValue delivery-AvDeliveryUtilsBucket Source: Type: CODEPIPELINE BuildSpec: !Sub | version: 0.2 phases: install: commands: - cd ~; wget https://raw.github.com/technomancy/leiningen/stable/bin/lein; chmod +x lein; mv lein /bin - LEIN_ROOT=true lein build: commands: - cd $CODEBUILD_SRC_DIR - LEIN_ROOT=true lein uberjar post_build: commands: - aws cloudformation package --template template.yaml --s3-bucket $S3_BUCKET --s3-prefix lambda --output-template av-usage-quarantine-output-template.yaml
defaults write com.apple.Terminal FocusFollowsMouse -string YES
Follow focus OFF
defaults write com.apple.Terminal FocusFollowsMouse -string NO
Then, restart Terminal.
(count (filter identity [nil 1 nil 4 nil])) 2Count falsey occurences
(count (filter #(or (false? %) (nil? %)) [nil 1 false 4 nil])) 3
centurion:~ jerome$ log show --predicate 'eventMessage contains "Previous shutdown cause"' --last 24h Filtering the log data using "eventMessage CONTAINS "Previous shutdown cause"" Skipping info and debug messages, pass --info and/or --debug to include. Timestamp Thread Type Activity PID TTL 2018-07-14 11:14:28.111106+0200 0xe5 Default 0x0 0 0 kernel: (AppleSMC) Previous shutdown cause: 5 2018-07-14 11:32:41.196172+0200 0xe3 Default 0x0 0 0 kernel: (AppleSMC) Previous shutdown cause: 5 -------------------------------------------------------------------------------------------------------------------- Log - Default: 2, Info: 0, Debug: 0, Error: 0, Fault: 0 Activity - Create: 0, Transition: 0, Actions: 0
cpan Apache2::Request
First, we will need apxs (Apache Extension tool).brew install httpd
Then, we will need Xcode.sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/ /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.13.xctoolchain sudo mkdir -p /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.13.xctoolchain/usr/local/bin/ sudo ln -s /usr/local/bin/apxs /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.13.xctoolchain/usr/local/bin/apsx sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.Internal.sdkThen install libapreq2 library.
tar xvfz libapreq2-2.13.tar.gz
cd libapreq2-2.13
./configure
make
make install
Then install mod_perl 2.
svn checkout https://svn.apache.org/repos/asf/perl/modperl/trunk/ mod_perl-2.0
cd mod_perl-2.0
perl Makefile.PL MP_CCOPTS=-std=gnu89
make
make install
NB: mod_perl.so and mod_apreq2.so will be installed in /usr/local/lib/httpd/modules.vi /usr/local/etc/httpd/httpd.conf
LoadModule perl_module lib/httpd/modules/mod_perl.so LoadModule apreq_module lib/httpd/modules/mod_apreq2.so ... ServerName jeroboam:8080 ... PerlSwitches -I /Users/jerome/perl5/lib/perl5 PerlModule Apache::DBI PerlModule ModPerl::Registry PerlRequire /Users/jerome/src/connectmv/perl/lib/startup.pl <Location /hlr_vas/> SetHandler perl-script PerlResponseHandler MBQT::mod_perl::HlrVas </Location> # PerlSetEnv DBG_FLG 1Apache restart
/usr/local/bin/apachectl restart
brew install postgresql@9.4 --with-python
brew link postgresql@9.4 --force
mkdir -p $HOME/Library/KeyBindings echo '{ /* Remap Home / End keys to be correct */ "\UF729" = "moveToBeginningOfLine:"; /* Home */ "\UF72B" = "moveToEndOfLine:"; /* End */ "$\UF729" = "moveToBeginningOfLineAndModifySelection:"; /* Shift + Home */ "$\UF72B" = "moveToEndOfLineAndModifySelection:"; /* Shift + End */ "^\UF729" = "moveToBeginningOfDocument:"; /* Ctrl + Home */ "^\UF72B" = "moveToEndOfDocument:"; /* Ctrl + End */ "$^\UF729" = "moveToBeginningOfDocumentAndModifySelection:"; /* Shift + Ctrl + Home */ "$^\UF72B" = "moveToEndOfDocumentAndModifySelection:"; /* Shift + Ctrl + End */ }' > $HOME/Library/KeyBindings/DefaultKeyBinding.dict
sudo vi /etc/ssh/ssh_config
# SendEnv LANG LC_*