Displaying 20 results from an estimated 72 matches for "server_type".
2009 Sep 18
5
Using variables in virtual resources
Hi.
I''ve defined a virtual user "kenneth", and depending on a variable in the
node definiton I''d like to add the users to different groups. Consider this
example:
###### Code start
node "server.example.com" {
$server_type = "typeA"
realize User[kenneth]
}
@user {"kenneth":
ensure => present,
uid => 1000,
gid => 1000,
groups => $server_type ? {
typeA => "wheel",
default => undef,
},
home => "/home/kenneth",...
2018 Jan 13
2
Icecast Radiolist Error
...w as a screen dump ("Icecast-Quelltext.png") in this Mail.
Additional the relevant Sourceview-Text:
... <entry>
<server_name>TheMplsRadio2.0</server_name>
<listen_url>http://streaming211.radionomy.com:80/TheMplsRadio20</listen_url>
<server_type>audio/mpeg</server_type>
<bitrate>128</bitrate>
<channels>0</channels>
<samplerate>0</samplerate>
<genre>prince</genre>
<current_song></current_song>
</entry>
<entry>...
2003 Oct 26
0
Patches for samba 3.0.0 client/client.c
...d_printf("Connection to %s failed\n", server_n);
return NULL;
@@ -2650,22 +2654,33 @@
if (!cli)
return 1;
+ if (*cli->server_domain) {
+ printf("Domain=[%s] OS=[%s] Server=[%s]\n",
+ cli->server_domain,cli->server_os,cli->server_type);
+ } else if (*cli->server_os || *cli->server_type){
+ printf("OS=[%s] Server=[%s]\n",
+ cli->server_os,cli->server_type);
+ } + browse_host(True);
+ /*
if (port != 139) {
-
- /* Workgroups simply don't make sense over an...
2020 Nov 07
2
JSON response track title not encoded to UTF8
I would like for icecase status json xls to be able to provide the currently song title playing encoded in utf8. I have a problem getting the song titles / artist names for greek or japanese characters. Check below status-json.xsl part, for an example :
...name","server_type":"audio/mpeg","server_url":"https://www.mixxx.org","stream_start":"Sat, 07 Nov 2020 20:46:58 +0000","stream_start_iso8601":"2020-11-07T20:46:58+0000","title":"CYBEREALITY??? - ???????? INTERNET 1.0 Log on"...
2020 Jun 19
1
dir.xiph.org stats & metadata not posting
...client for YP processing
[2020-06-20 09:20:53] DBUG yp/check_servers Add pending yps http://dir.xiph.org/cgi-bin/yp-cgi
[2020-06-20 09:20:53] DBUG yp/check_servers Add pending yps http://icecast-yp.internet-radio.com
[2020-06-20 09:20:57] DBUG stats/process_source_stat new node on /stream.mp3 "server_type" (audio/mpeg)
[2020-06-20 09:20:57] DBUG stats/modify_node_event update "/stream.mp3" server_type (audio/mpeg)
[2020-06-20 09:20:57] DBUG yp/yp_pending_update running through YP changes
[2020-06-20 09:20:57] DBUG yp/yp_add_callback Adding /stream.mp3 to http://icecast-yp.internet-rad...
2019 Jul 11
2
Need help with streaming to Icecast
...on how to solve this. Am I doing something wrong? Please
take a look on the code bellow
Thanks in advance
genre various
listener_peak 0
listeners 0
listenurl http://192.168.11.61:8000/gcs.ogg
max_listeners unlimited
public 0
server_description Unspecified description
server_name Unspecified name
server_type audio/mpeg
slow_listeners 0
source_ip 192.168.11.61
stream_start Thu, 11 Jul 2019 15:56:46 +0100
stream_start_iso8601 2019-07-11T15:56:46+0100
total_bytes_read 877800
total_bytes_sent 0
user_agent Lavf/58.20.100
*Code:*
int ret;
_pOutputFormatContext = ffmpeg.avformat_allo...
2010 Mar 05
1
WEBrick 500 error only with https
...ic/"),
:pkey => OpenSSL::PKey::RSA.new(
File.open(RAILS_ROOT +
"/config/certs/server.key").read),
:cert => OpenSSL::X509::Certificate.new(
File.open(RAILS_ROOT +
"/config/certs/server.crt").read),
:server_type => WEBrick::SimpleServer,
:charset => "UTF-8",
:mime_types => WEBrick::HTTPUtils::DefaultMimeTypes,
:debugger => false
}
ENV["RAILS_ENV"] = OPTIONS[:environment]
RAILS_ENV.replace(OPTIONS[:environment]) if defined?(RAILS_ENV)
require RAILS_ROOT...
2016 May 26
3
Failed to join domain: failed to lookup DC info for domain '<EXAMPLE.COM>' over rpc: The object name is not found.
..._rr_srv: Parsed zeus.<example.com> [0, 100, 389]
LDAP ping to hera.<example.com> (10.0.0.3)
&response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
command : LOGON_SAM_LOGON_RESPONSE_EX (23)
sbz : 0x0000 (0)
server_type : 0x000013fc (5116)
0: NBT_SERVER_PDC
1: NBT_SERVER_GC
1: NBT_SERVER_LDAP
1: NBT_SERVER_DS
1: NBT_SERVER_KDC
1: NBT_SERVER_TIMESERV...
2020 Nov 08
2
JSON response track title not encoded to UTF8
...I would like for icecase status json xls to be able to provide the
> currently song title playing encoded in utf8. I have a problem getting
> the song titles / artist names for greek or japanese characters. Check
> below status-json.xsl part, for an example :
>
> ...name","server_type":"audio/mpeg","server_url":"https://www.mixxx.org","stream_start":"Sat, 07 Nov 2020 20:46:58 +0000","stream_start_iso8601":"2020-11-07T20:46:58+0000","title":"CYBEREALITY??? - ???????? INTERNET 1.0 Log on"...
2010 Nov 09
2
AMQP and Unicorn (mq gem)
...com/danielsdeleo/qusion)
I''ve made a simple mod to Qusion for it to monkey patch
unicorn too.
The code looks like:
/vendor/plugins/qusion/lib/amqp.rb
module AMQP
def self.start_web_dispatcher(amqp_settings={})
@settings = settings.merge(amqp_settings)
case Qusion::ServerSpy.server_type
when :passenger
PhusionPassenger.on_event(:starting_worker_process) do |forked|
if forked
EM.kill_reactor
Thread.current[:mq], @conn = nil, nil
end
Thread.new { start }
die_gracefully_on_signal
end
when :standard
Thread...
2019 Jul 11
1
Need help with streaming to Icecast
...advance
> >
> > genre various
> > listener_peak 0
> > listeners 0
> > listenurl http://192.168.11.61:8000/gcs.ogg
> > max_listeners unlimited
> > public 0
> > server_description Unspecified description
> > server_name Unspecified name
> > server_type audio/mpeg
> > slow_listeners 0
> > source_ip 192.168.11.61
> > stream_start Thu, 11 Jul 2019 15:56:46 +0100
> > stream_start_iso8601 2019-07-11T15:56:46+0100
> > total_bytes_read 877800
> > total_bytes_sent 0
> > user_agent Lavf/58.20.100
> >
>
&g...
2016 May 26
1
Failed to join domain: failed to lookup DC info for domain '<EXAMPLE.COM>' over rpc: The object name is not found.
...example.com> [0, 100, 389]
> LDAP ping to hera.<example.com> (10.0.0.3)
> &response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
> command : LOGON_SAM_LOGON_RESPONSE_EX (23)
> sbz : 0x0000 (0)
> server_type : 0x000013fc (5116)
> 0: NBT_SERVER_PDC
> 1: NBT_SERVER_GC
> 1: NBT_SERVER_LDAP
> 1: NBT_SERVER_DS
> 1: NBT_SERVER_KDC
> 1: NBT_SERVER_TIMESERV
> 1: NBT_SERVER_...
2006 Jan 16
2
Basic (newbie) Webrick / ssl config question
I have a simple Intranet app I want to make accessible via the
Internet for remote access by our employees.
I want to use ssl (https) connections and I''ve found enough messages
to imply Webrick as included in rails can do the job.
The message at
http://wrath.rubyonrails.org/pipermail/rails/2005-January/001993.html
even appears to tell me exactly how to do it by modifying
2024 May 24
1
LDAP error 53 LDAP_UNWILLING_TO_PERFORM
...ory
finddcs: response 0 at '192.168.237.150'
finddcs: performing CLDAP query on 192.168.237.150
&response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
command : LOGON_SAM_LOGON_RESPONSE_EX (23)
sbz : 0x0000 (0)
server_type : 0x0003f3fd (259069)
1: NBT_SERVER_PDC
1: NBT_SERVER_GC
1: NBT_SERVER_LDAP
1: NBT_SERVER_DS
1: NBT_SERVER_KDC
1: NBT_SERVER_TIMESERV
1: NBT_SERVER_CLOSEST
1: NBT_SER...
2016 May 26
0
Failed to join domain: failed to lookup DC info for domain '<EXAMPLE.COM>' over rpc: The object name is not found.
...e_rr_srv: Parsed zeus.<_example.com_> [0, 100, 389]LDAP ping to hera.<_example.com_> (10.0.0.3) &response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX command : LOGON_SAM_LOGON_RESPONSE_EX (23) sbz : 0x0000 (0) server_type : 0x000013fc (5116) 0: NBT_SERVER_PDC 1: NBT_SERVER_GC 1: NBT_SERVER_LDAP 1: NBT_SERVER_DS 1: NBT_SERVER_KDC 1: NBT_SERVER_TIMESERV 1: NBT_SERVER_CLOSEST 1: NBT_SERVER_WRITAB...
2014 Mar 24
0
Winbind logins failing after upgrade from Samba 3 to Samba 4
...10.235.202.197
ads_try_connect: sending CLDAP request to 10.235.202.197 (realm: DOMAIN.LOCAL)
&response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
command : LOGON_SAM_LOGON_RESPONSE_EX (23)
sbz : 0x0000 (0)
server_type : 0x0000317d (12669)
1: NBT_SERVER_PDC
1: NBT_SERVER_GC
1: NBT_SERVER_LDAP
1: NBT_SERVER_DS
1: NBT_SERVER_KDC
1: NBT_SERVER_TIMESERV
0: NBT_SERVER_CLOSEST...
2014 Jul 16
0
FreeBSD problems with sysvol and share Acls
...;
finddcs: DNS SRV response 1 at '190.57.234.178'
finddcs: performing CLDAP query on 10.0.10.10
&response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
command : LOGON_SAM_LOGON_RESPONSE_EX (23)
sbz : 0x0000 (0)
server_type : 0x0000137d (4989)
1: NBT_SERVER_PDC
1: NBT_SERVER_GC
1: NBT_SERVER_LDAP
1: NBT_SERVER_DS
1: NBT_SERVER_KDC
1: NBT_SERVER_TIMESERV
0: NBT_SERVER_CLOSEST
1: NBT_SERVE...
2013 Sep 23
2
samba-tool join domain fails
Hi folks,
big problem with my testint environment... my windows 2003-domain exists
since 2004 and the credentials are correct, guaranteed.
This problem is actually same on Ubuntu 12.04.3 and Debian 7...
<code>
root at pa-lnxd-04:~# /usr/local/samba/bin/samba-tool domain join
INTRANET.DOMAIN.DE DC -Uintranet/admin --realm=intranet.DOMAIN.de
Finding a writeable DC for domain
2012 Oct 11
3
Joining Samba RODC, NT_STATUS_NOT_SUPPORTED
...M.COM.TR
server 10.10.25.4
ads_try_connect: sending CLDAP request to 10.10.25.4 (realm: TESTDOM.COM.TR)
&response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
command : LOGON_SAM_LOGON_RESPONSE_EX (23)
sbz : 0x0000 (0)
server_type : 0x000028fc (10492)
0: NBT_SERVER_PDC
1: NBT_SERVER_GC
1: NBT_SERVER_LDAP
1: NBT_SERVER_DS
1: NBT_SERVER_KDC
1: NBT_SERVER_TIMESERV
1: NBT_SERVER_CLOSEST
0: NBT_SERV...
2018 Mar 08
4
NT_STATUS_CONNECTION_REFUSED Joining Domain - Desperately need help
...[0, 100, 389]
finddcs: DNS SRV response 0 at '10.10.11.4'
finddcs: DNS SRV response 1 at '10.10.11.4'
finddcs: performing CLDAP query on 10.10.11.4
&response->data.nt5_ex: struct NETLOGON_SAM_LOGON_RESPONSE_EX
command : LOGON_SAM_LOGON_RESPONSE_EX (23)
sbz : 0x0000 (0)
server_type : 0x000013fd (5117)
1: NBT_SERVER_PDC
1: NBT_SERVER_GC
1: NBT_SERVER_LDAP
1: NBT_SERVER_DS
1: NBT_SERVER_KDC
1: NBT_SERVER_TIMESERV
1: NBT_SERVER_CLOSEST
1: NBT_SERVER_WRITABLE
1: NBT_SERVER_GOOD_TIMESERV
0: NBT_SERVER_NDNC
0: NBT_SERVER_SELECT_SECRET_DOMAIN_6
1: NBT_SERVER_FULL_SECRET_...