Books

Feed

Categories

Ads

Recent Posts

Ads

Security Advisories

RSS FreeBSD Advisories

RSS NetBSD Advisories

Archive for 'FreeBSD'

Errors with RabbitMQ on FreeBSD

I’ve run into the following error(s) intermittently while starting or stopping RabbitMQ on my FreeBSD machine. It was rather perplexing as it seemed inconsistent. The messages have been abbreviated for brevity. $ sudo /usr/local/etc/rc.d/rabbitmq start {error_logger,{{2009,10,14},{9,8,46}},std_error,”File operation error: eacces. Target: .. Function: read_file_info. Process: code_server.”} {error_logger,{{2009,10,14},{9,8,46}},std_error,”File operation error: eacces. Target: ./standard_error.beam. Function: get_file. Process: code_server.”} [...]

Fixing PCRE_UTF8 Errors in FreeBSD

I have recently encountered this error: PHP Warning: preg_match(): Compilation failed: this version of PCRE is not compiled with PCRE_UTF8 support at offset 0 And despite some of the suggested solutions I have found in various Drupal and MediaWiki forums, all of them related to older versions of ports. The version of pcre I have [...]

Q: How do I encrypt file transfers with dd and netcat?

A: This question came to us in response to the article Backup Files and Partitions with dd and netcat. Encrypting these files transfers is quite simple. As in the previous article, we will setup the server to listen on port 9999 and redirect output to “backup.file” server# nc -l -p 9999 | \\ openssl aes-256-cbc [...]