rubycas-server 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.txt +1 -186
- data/History.txt +247 -0
- data/Manifest.txt +27 -2
- data/PostInstall.txt +3 -0
- data/Rakefile +4 -60
- data/bin/rubycas-server +2 -2
- data/bin/rubycas-server-ctl +0 -0
- data/casserver.db +0 -0
- data/casserver.log +792 -0
- data/casserver_db.log +88 -0
- data/config/hoe.rb +76 -0
- data/config/requirements.rb +15 -0
- data/config.example.yml +130 -6
- data/lib/casserver/authenticators/base.rb +20 -0
- data/lib/casserver/authenticators/client_certificate.rb +46 -0
- data/lib/casserver/authenticators/google.rb +54 -0
- data/lib/casserver/authenticators/ldap.rb +70 -40
- data/lib/casserver/authenticators/ntlm.rb +88 -0
- data/lib/casserver/authenticators/open_id.rb +22 -0
- data/lib/casserver/authenticators/sql.rb +66 -1
- data/lib/casserver/authenticators/sql_md5.rb +19 -0
- data/lib/casserver/authenticators/test.rb +5 -1
- data/lib/casserver/cas.rb +97 -22
- data/lib/casserver/controllers.rb +95 -34
- data/lib/casserver/environment.rb +16 -9
- data/lib/casserver/models.rb +38 -10
- data/lib/casserver/version.rb +1 -1
- data/lib/casserver/views.rb +38 -22
- data/lib/casserver.rb +13 -9
- data/lib/rubycas-server/version.rb +1 -0
- data/lib/rubycas-server.rb +1 -1
- data/lib/themes/notice.png +0 -0
- data/lib/themes/simple/logo.png +0 -0
- data/misc/basic_cas_single_signon_mechanism_diagram.png +0 -0
- data/misc/basic_cas_single_signon_mechanism_diagram.svg +652 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +82 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/website/index.html +40 -0
- data/website/index.txt +3 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +40 -0
- metadata +45 -33
- data/test/test_cas.rb +0 -33
- data/test/test_casserver.rb +0 -125
data/casserver.log
ADDED
@@ -0,0 +1,792 @@
|
|
1
|
+
# Logfile created on Thu Mar 08 15:38:19 -0500 2007 by logger.rb/1.5.2.9
|
2
|
+
I, [2007-03-08T15:38:19.250305 #25222] INFO -- : Migrating database
|
3
|
+
I, [2007-03-08T15:38:19.259390 #25222] INFO -- : RubyCAS-Server initialized.
|
4
|
+
D, [2007-03-08T15:38:19.260973 #25222] DEBUG -- : Configuration is:
|
5
|
+
--- !map:HashWithIndifferentAccess
|
6
|
+
authenticator: !map:HashWithIndifferentAccess
|
7
|
+
class: CASServer::Authenticators::Test
|
8
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
9
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
10
|
+
theme: urbacon
|
11
|
+
db_log: !map:HashWithIndifferentAccess
|
12
|
+
file: casserver_db.log
|
13
|
+
log: !map:HashWithIndifferentAccess
|
14
|
+
level: DEBUG
|
15
|
+
file: casserver.log
|
16
|
+
port: 443
|
17
|
+
uri_path: /cas
|
18
|
+
server: webrick
|
19
|
+
organization: URBACON
|
20
|
+
database: !map:HashWithIndifferentAccess
|
21
|
+
dbfile: casserver.db
|
22
|
+
adapter: sqlite3
|
23
|
+
|
24
|
+
D, [2007-03-08T15:38:19.261039 #25222] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5e30ebc>
|
25
|
+
D, [2007-03-08T15:38:19.315991 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r25FC8256C9BEA7CE15EBFF0C64A' for client at '127.0.0.1'
|
26
|
+
D, [2007-03-08T15:38:19.316064 #25222] DEBUG -- : Rendering login form with lt: LT-1173386299r25FC8256C9BEA7CE15EBFF0C64A, service: , renew: , gateway:
|
27
|
+
D, [2007-03-08T15:38:19.398519 #25222] DEBUG -- : Validating login ticket 'LT-1173386299r25FC8256C9BEA7CE15EBFF0C64A'
|
28
|
+
I, [2007-03-08T15:38:19.399492 #25222] INFO -- : Login ticket 'LT-1173386299r25FC8256C9BEA7CE15EBFF0C64A' successfully validated
|
29
|
+
D, [2007-03-08T15:38:19.402560 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r1BEAC61299EEC0E4F39EB9F3325' for client at '127.0.0.1'
|
30
|
+
D, [2007-03-08T15:38:19.402674 #25222] DEBUG -- : Logging in with username: testuser, lt: LT-1173386299r1BEAC61299EEC0E4F39EB9F3325, service: , auth: #<CASServer::Authenticators::Test:0xb5e30ebc>
|
31
|
+
W, [2007-03-08T15:38:19.402734 #25222] WARN -- : Invalid credentials given for user 'testuser'
|
32
|
+
D, [2007-03-08T15:38:19.438536 #25222] DEBUG -- : Validating login ticket 'LT-1173386299r25FC8256C9BEA7CE15EBFF0C64A'
|
33
|
+
W, [2007-03-08T15:38:19.439345 #25222] WARN -- : Login ticket 'LT-1173386299r25FC8256C9BEA7CE15EBFF0C64A' previously used up
|
34
|
+
D, [2007-03-08T15:38:19.476694 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r17E2FFAD99CE0A795E6CAA00E18' for client at '127.0.0.1'
|
35
|
+
D, [2007-03-08T15:38:19.476772 #25222] DEBUG -- : Rendering login form with lt: LT-1173386299r17E2FFAD99CE0A795E6CAA00E18, service: , renew: , gateway:
|
36
|
+
D, [2007-03-08T15:38:19.509360 #25222] DEBUG -- : Validating login ticket 'LT-1173386299r17E2FFAD99CE0A795E6CAA00E18'
|
37
|
+
I, [2007-03-08T15:38:19.510288 #25222] INFO -- : Login ticket 'LT-1173386299r17E2FFAD99CE0A795E6CAA00E18' successfully validated
|
38
|
+
D, [2007-03-08T15:38:19.513416 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r26802A585A6C656E33EF0E480DB' for client at '127.0.0.1'
|
39
|
+
D, [2007-03-08T15:38:19.513526 #25222] DEBUG -- : Logging in with username: , lt: LT-1173386299r26802A585A6C656E33EF0E480DB, service: , auth: #<CASServer::Authenticators::Test:0xb5e30ebc>
|
40
|
+
W, [2007-03-08T15:38:19.513586 #25222] WARN -- : Invalid credentials given for user ''
|
41
|
+
D, [2007-03-08T15:38:19.547293 #25222] DEBUG -- : Validating login ticket ''
|
42
|
+
W, [2007-03-08T15:38:19.547380 #25222] WARN -- : Missing login ticket.
|
43
|
+
D, [2007-03-08T15:38:19.584150 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r130A8BD06AB46F61A574E4EDC51' for client at '127.0.0.1'
|
44
|
+
D, [2007-03-08T15:38:19.584223 #25222] DEBUG -- : Rendering login form with lt: LT-1173386299r130A8BD06AB46F61A574E4EDC51, service: , renew: , gateway:
|
45
|
+
D, [2007-03-08T15:38:19.674708 #25222] DEBUG -- : Validating login ticket 'LT-1173386299r130A8BD06AB46F61A574E4EDC51'
|
46
|
+
I, [2007-03-08T15:38:19.675681 #25222] INFO -- : Login ticket 'LT-1173386299r130A8BD06AB46F61A574E4EDC51' successfully validated
|
47
|
+
D, [2007-03-08T15:38:19.678678 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r3AE24AD635E48925B45E62A80E0' for client at '127.0.0.1'
|
48
|
+
D, [2007-03-08T15:38:19.678791 #25222] DEBUG -- : Logging in with username: testuser, lt: LT-1173386299r3AE24AD635E48925B45E62A80E0, service: , auth: #<CASServer::Authenticators::Test:0xb5e30ebc>
|
49
|
+
I, [2007-03-08T15:38:19.678880 #25222] INFO -- : Credentials for username 'testuser' successfully validated
|
50
|
+
D, [2007-03-08T15:38:19.680890 #25222] DEBUG -- : Generated ticket granting ticket 'TGC-1173386299rD92E865EA30AAA5E037E6FDCA' for user 'testuser' at '127.0.0.1'
|
51
|
+
D, [2007-03-08T15:38:19.680977 #25222] DEBUG -- : Ticket granting cookie 'TGC-1173386299rD92E865EA30AAA5E037E6FDCA' granted to 'testuser'
|
52
|
+
I, [2007-03-08T15:38:19.681035 #25222] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
53
|
+
D, [2007-03-08T15:38:19.719785 #25222] DEBUG -- : Generated login ticket 'LT-1173386299r3DFAA64E87F0673194CF56F69B2' for client at '127.0.0.1'
|
54
|
+
D, [2007-03-08T15:38:19.719858 #25222] DEBUG -- : Rendering login form with lt: LT-1173386299r3DFAA64E87F0673194CF56F69B2, service: , renew: , gateway:
|
55
|
+
D, [2007-03-08T15:38:19.754540 #25222] DEBUG -- : Validating login ticket 'LT-1173386299r3DFAA64E87F0673194CF56F69B2'
|
56
|
+
I, [2007-03-08T15:38:19.755552 #25222] INFO -- : Login ticket 'LT-1173386299r3DFAA64E87F0673194CF56F69B2' successfully validated
|
57
|
+
D, [2007-03-08T15:38:19.758564 #25222] DEBUG -- : Generated login ticket 'LT-1173386299rACB8D07A395C6DAC979B58544A' for client at '127.0.0.1'
|
58
|
+
D, [2007-03-08T15:38:19.758679 #25222] DEBUG -- : Logging in with username: testuser, lt: LT-1173386299rACB8D07A395C6DAC979B58544A, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5e30ebc>
|
59
|
+
I, [2007-03-08T15:38:19.758742 #25222] INFO -- : Credentials for username 'testuser' successfully validated
|
60
|
+
D, [2007-03-08T15:38:19.760005 #25222] DEBUG -- : Generated ticket granting ticket 'TGC-1173386299r28C8323419650B9A6687FF1B046' for user 'testuser' at '127.0.0.1'
|
61
|
+
D, [2007-03-08T15:38:19.760083 #25222] DEBUG -- : Ticket granting cookie 'TGC-1173386299r28C8323419650B9A6687FF1B046' granted to 'testuser'
|
62
|
+
D, [2007-03-08T15:38:19.763826 #25222] DEBUG -- : Generated service ticket 'ST-1173386299r282471A832E89AC25622EAB7CCA' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
63
|
+
I, [2007-03-08T15:38:19.763982 #25222] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
64
|
+
I, [2007-03-08T15:42:42.824885 #25291] INFO -- : Migrating database
|
65
|
+
I, [2007-03-08T15:42:42.834780 #25291] INFO -- : RubyCAS-Server initialized.
|
66
|
+
D, [2007-03-08T15:42:42.836506 #25291] DEBUG -- : Configuration is:
|
67
|
+
--- !map:HashWithIndifferentAccess
|
68
|
+
authenticator: !map:HashWithIndifferentAccess
|
69
|
+
class: CASServer::Authenticators::Test
|
70
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
71
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
72
|
+
theme: urbacon
|
73
|
+
db_log: !map:HashWithIndifferentAccess
|
74
|
+
file: casserver_db.log
|
75
|
+
log: !map:HashWithIndifferentAccess
|
76
|
+
level: DEBUG
|
77
|
+
file: casserver.log
|
78
|
+
port: 443
|
79
|
+
uri_path: /cas
|
80
|
+
server: webrick
|
81
|
+
organization: URBACON
|
82
|
+
database: !map:HashWithIndifferentAccess
|
83
|
+
dbfile: casserver.db
|
84
|
+
adapter: sqlite3
|
85
|
+
|
86
|
+
D, [2007-03-08T15:42:42.836576 #25291] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5e60e64>
|
87
|
+
D, [2007-03-08T15:42:42.898133 #25291] DEBUG -- : Generated login ticket 'LT-1173386562r42CB9F72465E0A7196F9C26D0EE' for client at '127.0.0.1'
|
88
|
+
D, [2007-03-08T15:42:42.898224 #25291] DEBUG -- : Rendering login form with lt: LT-1173386562r42CB9F72465E0A7196F9C26D0EE, service: , renew: , gateway:
|
89
|
+
D, [2007-03-08T15:42:42.998744 #25291] DEBUG -- : Validating login ticket 'LT-1173386562r42CB9F72465E0A7196F9C26D0EE'
|
90
|
+
I, [2007-03-08T15:42:42.999706 #25291] INFO -- : Login ticket 'LT-1173386562r42CB9F72465E0A7196F9C26D0EE' successfully validated
|
91
|
+
D, [2007-03-08T15:42:43.007597 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r1C2123B3CBC8DB56FF00F26EFD4' for client at '127.0.0.1'
|
92
|
+
D, [2007-03-08T15:42:43.007739 #25291] DEBUG -- : Logging in with username: testuser, lt: LT-1173386563r1C2123B3CBC8DB56FF00F26EFD4, service: , auth: #<CASServer::Authenticators::Test:0xb5e60e64>
|
93
|
+
W, [2007-03-08T15:42:43.007803 #25291] WARN -- : Invalid credentials given for user 'testuser'
|
94
|
+
D, [2007-03-08T15:42:43.072769 #25291] DEBUG -- : Validating login ticket 'LT-1173386562r42CB9F72465E0A7196F9C26D0EE'
|
95
|
+
W, [2007-03-08T15:42:43.073693 #25291] WARN -- : Login ticket 'LT-1173386562r42CB9F72465E0A7196F9C26D0EE' previously used up
|
96
|
+
D, [2007-03-08T15:42:43.113914 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r4C47744745E423B6412D41CA37F' for client at '127.0.0.1'
|
97
|
+
D, [2007-03-08T15:42:43.114002 #25291] DEBUG -- : Rendering login form with lt: LT-1173386563r4C47744745E423B6412D41CA37F, service: , renew: , gateway:
|
98
|
+
D, [2007-03-08T15:42:43.148446 #25291] DEBUG -- : Validating login ticket 'LT-1173386563r4C47744745E423B6412D41CA37F'
|
99
|
+
I, [2007-03-08T15:42:43.149384 #25291] INFO -- : Login ticket 'LT-1173386563r4C47744745E423B6412D41CA37F' successfully validated
|
100
|
+
D, [2007-03-08T15:42:43.152415 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r3E139E2D01A7BD6B2C6441E802E' for client at '127.0.0.1'
|
101
|
+
D, [2007-03-08T15:42:43.152533 #25291] DEBUG -- : Logging in with username: , lt: LT-1173386563r3E139E2D01A7BD6B2C6441E802E, service: , auth: #<CASServer::Authenticators::Test:0xb5e60e64>
|
102
|
+
W, [2007-03-08T15:42:43.152593 #25291] WARN -- : Invalid credentials given for user ''
|
103
|
+
D, [2007-03-08T15:42:43.187691 #25291] DEBUG -- : Validating login ticket ''
|
104
|
+
W, [2007-03-08T15:42:43.187815 #25291] WARN -- : Missing login ticket.
|
105
|
+
D, [2007-03-08T15:42:43.230288 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r4EA07FDF06A91E25FEEA5054E92' for client at '127.0.0.1'
|
106
|
+
D, [2007-03-08T15:42:43.230364 #25291] DEBUG -- : Rendering login form with lt: LT-1173386563r4EA07FDF06A91E25FEEA5054E92, service: , renew: , gateway:
|
107
|
+
D, [2007-03-08T15:42:43.333631 #25291] DEBUG -- : Validating login ticket 'LT-1173386563r4EA07FDF06A91E25FEEA5054E92'
|
108
|
+
I, [2007-03-08T15:42:43.334610 #25291] INFO -- : Login ticket 'LT-1173386563r4EA07FDF06A91E25FEEA5054E92' successfully validated
|
109
|
+
D, [2007-03-08T15:42:43.337321 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r425D168AEFBFE909225AD323435' for client at '127.0.0.1'
|
110
|
+
D, [2007-03-08T15:42:43.337450 #25291] DEBUG -- : Logging in with username: testuser, lt: LT-1173386563r425D168AEFBFE909225AD323435, service: , auth: #<CASServer::Authenticators::Test:0xb5e60e64>
|
111
|
+
I, [2007-03-08T15:42:43.337517 #25291] INFO -- : Credentials for username 'testuser' successfully validated
|
112
|
+
D, [2007-03-08T15:42:43.339603 #25291] DEBUG -- : Generated ticket granting ticket 'TGC-1173386563r325252410C7B83D7F89E373A341' for user 'testuser' at '127.0.0.1'
|
113
|
+
D, [2007-03-08T15:42:43.339691 #25291] DEBUG -- : Ticket granting cookie 'TGC-1173386563r325252410C7B83D7F89E373A341' granted to 'testuser'
|
114
|
+
I, [2007-03-08T15:42:43.339750 #25291] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
115
|
+
D, [2007-03-08T15:42:43.383088 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r17AEBDF395142713D644DF63D8A' for client at '127.0.0.1'
|
116
|
+
D, [2007-03-08T15:42:43.383163 #25291] DEBUG -- : Rendering login form with lt: LT-1173386563r17AEBDF395142713D644DF63D8A, service: , renew: , gateway:
|
117
|
+
D, [2007-03-08T15:42:43.422459 #25291] DEBUG -- : Validating login ticket 'LT-1173386563r17AEBDF395142713D644DF63D8A'
|
118
|
+
I, [2007-03-08T15:42:43.423559 #25291] INFO -- : Login ticket 'LT-1173386563r17AEBDF395142713D644DF63D8A' successfully validated
|
119
|
+
D, [2007-03-08T15:42:43.426689 #25291] DEBUG -- : Generated login ticket 'LT-1173386563r4DCBF3DA4ACDB7F2C13032B930B' for client at '127.0.0.1'
|
120
|
+
D, [2007-03-08T15:42:43.426823 #25291] DEBUG -- : Logging in with username: testuser, lt: LT-1173386563r4DCBF3DA4ACDB7F2C13032B930B, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5e60e64>
|
121
|
+
I, [2007-03-08T15:42:43.426891 #25291] INFO -- : Credentials for username 'testuser' successfully validated
|
122
|
+
D, [2007-03-08T15:42:43.430456 #25291] DEBUG -- : Generated ticket granting ticket 'TGC-1173386563r2213B0DB1D91FA54F29D139FC36' for user 'testuser' at '127.0.0.1'
|
123
|
+
D, [2007-03-08T15:42:43.430559 #25291] DEBUG -- : Ticket granting cookie 'TGC-1173386563r2213B0DB1D91FA54F29D139FC36' granted to 'testuser'
|
124
|
+
D, [2007-03-08T15:42:43.433813 #25291] DEBUG -- : Generated service ticket 'ST-1173386563r3B8264E9FA7274604D997697918' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
125
|
+
I, [2007-03-08T15:42:43.433983 #25291] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
126
|
+
I, [2007-03-08T15:42:56.437616 #25301] INFO -- : Migrating database
|
127
|
+
I, [2007-03-08T15:42:56.444789 #25301] INFO -- : RubyCAS-Server initialized.
|
128
|
+
D, [2007-03-08T15:42:56.449318 #25301] DEBUG -- : Configuration is:
|
129
|
+
--- !map:HashWithIndifferentAccess
|
130
|
+
authenticator: !map:HashWithIndifferentAccess
|
131
|
+
class: CASServer::Authenticators::Test
|
132
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
133
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
134
|
+
theme: urbacon
|
135
|
+
db_log: !map:HashWithIndifferentAccess
|
136
|
+
file: casserver_db.log
|
137
|
+
log: !map:HashWithIndifferentAccess
|
138
|
+
level: DEBUG
|
139
|
+
file: casserver.log
|
140
|
+
port: 443
|
141
|
+
uri_path: /cas
|
142
|
+
server: webrick
|
143
|
+
organization: URBACON
|
144
|
+
database: !map:HashWithIndifferentAccess
|
145
|
+
dbfile: casserver.db
|
146
|
+
adapter: sqlite3
|
147
|
+
|
148
|
+
D, [2007-03-08T15:42:56.451803 #25301] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5e68e98>
|
149
|
+
D, [2007-03-08T15:42:56.545362 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r2B12884EF0267F1FDDE22A9BC2F' for client at '127.0.0.1'
|
150
|
+
D, [2007-03-08T15:42:56.545454 #25301] DEBUG -- : Rendering login form with lt: LT-1173386576r2B12884EF0267F1FDDE22A9BC2F, service: , renew: , gateway:
|
151
|
+
D, [2007-03-08T15:42:56.647564 #25301] DEBUG -- : Validating login ticket 'LT-1173386576r2B12884EF0267F1FDDE22A9BC2F'
|
152
|
+
I, [2007-03-08T15:42:56.648545 #25301] INFO -- : Login ticket 'LT-1173386576r2B12884EF0267F1FDDE22A9BC2F' successfully validated
|
153
|
+
D, [2007-03-08T15:42:56.654145 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r3B3D928315A59FF3304265E7E0F' for client at '127.0.0.1'
|
154
|
+
D, [2007-03-08T15:42:56.654302 #25301] DEBUG -- : Logging in with username: testuser, lt: LT-1173386576r3B3D928315A59FF3304265E7E0F, service: , auth: #<CASServer::Authenticators::Test:0xb5e68e98>
|
155
|
+
W, [2007-03-08T15:42:56.654365 #25301] WARN -- : Invalid credentials given for user 'testuser'
|
156
|
+
D, [2007-03-08T15:42:56.690151 #25301] DEBUG -- : Validating login ticket 'LT-1173386576r2B12884EF0267F1FDDE22A9BC2F'
|
157
|
+
W, [2007-03-08T15:42:56.691099 #25301] WARN -- : Login ticket 'LT-1173386576r2B12884EF0267F1FDDE22A9BC2F' previously used up
|
158
|
+
D, [2007-03-08T15:42:56.730676 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r36566401900B6CD1A09295076BF' for client at '127.0.0.1'
|
159
|
+
D, [2007-03-08T15:42:56.730757 #25301] DEBUG -- : Rendering login form with lt: LT-1173386576r36566401900B6CD1A09295076BF, service: , renew: , gateway:
|
160
|
+
D, [2007-03-08T15:42:56.765067 #25301] DEBUG -- : Validating login ticket 'LT-1173386576r36566401900B6CD1A09295076BF'
|
161
|
+
I, [2007-03-08T15:42:56.766003 #25301] INFO -- : Login ticket 'LT-1173386576r36566401900B6CD1A09295076BF' successfully validated
|
162
|
+
D, [2007-03-08T15:42:56.770133 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r41F3EDC5E4D25A33E6943E54D39' for client at '127.0.0.1'
|
163
|
+
D, [2007-03-08T15:42:56.770258 #25301] DEBUG -- : Logging in with username: , lt: LT-1173386576r41F3EDC5E4D25A33E6943E54D39, service: , auth: #<CASServer::Authenticators::Test:0xb5e68e98>
|
164
|
+
W, [2007-03-08T15:42:56.770322 #25301] WARN -- : Invalid credentials given for user ''
|
165
|
+
D, [2007-03-08T15:42:56.804287 #25301] DEBUG -- : Validating login ticket ''
|
166
|
+
W, [2007-03-08T15:42:56.804385 #25301] WARN -- : Missing login ticket.
|
167
|
+
D, [2007-03-08T15:42:56.843724 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r36BDF57ACF7FB24B1DD448F4424' for client at '127.0.0.1'
|
168
|
+
D, [2007-03-08T15:42:56.843805 #25301] DEBUG -- : Rendering login form with lt: LT-1173386576r36BDF57ACF7FB24B1DD448F4424, service: , renew: , gateway:
|
169
|
+
D, [2007-03-08T15:42:56.943571 #25301] DEBUG -- : Validating login ticket 'LT-1173386576r36BDF57ACF7FB24B1DD448F4424'
|
170
|
+
I, [2007-03-08T15:42:56.944635 #25301] INFO -- : Login ticket 'LT-1173386576r36BDF57ACF7FB24B1DD448F4424' successfully validated
|
171
|
+
D, [2007-03-08T15:42:56.948154 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r9F4895440BC82D48FE8763883B' for client at '127.0.0.1'
|
172
|
+
D, [2007-03-08T15:42:56.948285 #25301] DEBUG -- : Logging in with username: testuser, lt: LT-1173386576r9F4895440BC82D48FE8763883B, service: , auth: #<CASServer::Authenticators::Test:0xb5e68e98>
|
173
|
+
I, [2007-03-08T15:42:56.948349 #25301] INFO -- : Credentials for username 'testuser' successfully validated
|
174
|
+
D, [2007-03-08T15:42:56.951714 #25301] DEBUG -- : Generated ticket granting ticket 'TGC-1173386576r804262F62D8552813EEA27B7CD' for user 'testuser' at '127.0.0.1'
|
175
|
+
D, [2007-03-08T15:42:56.951812 #25301] DEBUG -- : Ticket granting cookie 'TGC-1173386576r804262F62D8552813EEA27B7CD' granted to 'testuser'
|
176
|
+
I, [2007-03-08T15:42:56.951871 #25301] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
177
|
+
D, [2007-03-08T15:42:56.992994 #25301] DEBUG -- : Generated login ticket 'LT-1173386576r4BABA9171AAC2BB501CE4E4AA27' for client at '127.0.0.1'
|
178
|
+
D, [2007-03-08T15:42:56.993072 #25301] DEBUG -- : Rendering login form with lt: LT-1173386576r4BABA9171AAC2BB501CE4E4AA27, service: , renew: , gateway:
|
179
|
+
D, [2007-03-08T15:42:57.034059 #25301] DEBUG -- : Validating login ticket 'LT-1173386576r4BABA9171AAC2BB501CE4E4AA27'
|
180
|
+
I, [2007-03-08T15:42:57.035072 #25301] INFO -- : Login ticket 'LT-1173386576r4BABA9171AAC2BB501CE4E4AA27' successfully validated
|
181
|
+
D, [2007-03-08T15:42:57.039459 #25301] DEBUG -- : Generated login ticket 'LT-1173386577r3883A2283B4B95E9AE7E254225D' for client at '127.0.0.1'
|
182
|
+
D, [2007-03-08T15:42:57.039583 #25301] DEBUG -- : Logging in with username: testuser, lt: LT-1173386577r3883A2283B4B95E9AE7E254225D, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5e68e98>
|
183
|
+
I, [2007-03-08T15:42:57.039674 #25301] INFO -- : Credentials for username 'testuser' successfully validated
|
184
|
+
D, [2007-03-08T15:42:57.042063 #25301] DEBUG -- : Generated ticket granting ticket 'TGC-1173386577r21D8CC7F928ACDCED45CA985C2' for user 'testuser' at '127.0.0.1'
|
185
|
+
D, [2007-03-08T15:42:57.042151 #25301] DEBUG -- : Ticket granting cookie 'TGC-1173386577r21D8CC7F928ACDCED45CA985C2' granted to 'testuser'
|
186
|
+
D, [2007-03-08T15:42:57.045249 #25301] DEBUG -- : Generated service ticket 'ST-1173386577r3ACC7913F208E99E6B8A1F13E2B' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
187
|
+
I, [2007-03-08T15:42:57.045406 #25301] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
188
|
+
I, [2007-03-08T15:51:56.498962 #25487] INFO -- : Migrating database
|
189
|
+
I, [2007-03-08T15:51:56.508980 #25487] INFO -- : RubyCAS-Server initialized.
|
190
|
+
D, [2007-03-08T15:51:56.510714 #25487] DEBUG -- : Configuration is:
|
191
|
+
--- !map:HashWithIndifferentAccess
|
192
|
+
authenticator: !map:HashWithIndifferentAccess
|
193
|
+
class: CASServer::Authenticators::Test
|
194
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
195
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
196
|
+
theme: urbacon
|
197
|
+
db_log: !map:HashWithIndifferentAccess
|
198
|
+
file: casserver_db.log
|
199
|
+
log: !map:HashWithIndifferentAccess
|
200
|
+
level: DEBUG
|
201
|
+
file: casserver.log
|
202
|
+
port: 443
|
203
|
+
uri_path: /cas
|
204
|
+
server: webrick
|
205
|
+
organization: URBACON
|
206
|
+
database: !map:HashWithIndifferentAccess
|
207
|
+
dbfile: casserver.db
|
208
|
+
adapter: sqlite3
|
209
|
+
|
210
|
+
D, [2007-03-08T15:51:56.510788 #25487] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5e76ebc>
|
211
|
+
D, [2007-03-08T15:51:56.569967 #25487] DEBUG -- : Generated login ticket 'LT-1173387116r4071292E3F2F1ED3CA5A32A0FD5' for client at '127.0.0.1'
|
212
|
+
D, [2007-03-08T15:51:56.570045 #25487] DEBUG -- : Rendering login form with lt: LT-1173387116r4071292E3F2F1ED3CA5A32A0FD5, service: , renew: , gateway:
|
213
|
+
D, [2007-03-08T15:51:56.657946 #25487] DEBUG -- : Validating login ticket 'LT-1173387116r4071292E3F2F1ED3CA5A32A0FD5'
|
214
|
+
I, [2007-03-08T15:51:56.659023 #25487] INFO -- : Login ticket 'LT-1173387116r4071292E3F2F1ED3CA5A32A0FD5' successfully validated
|
215
|
+
D, [2007-03-08T15:51:56.662167 #25487] DEBUG -- : Generated login ticket 'LT-1173387116r36789470F89811FD726BC3EA821' for client at '127.0.0.1'
|
216
|
+
D, [2007-03-08T15:51:56.662313 #25487] DEBUG -- : Logging in with username: testuser, lt: LT-1173387116r36789470F89811FD726BC3EA821, service: , auth: #<CASServer::Authenticators::Test:0xb5e76ebc>
|
217
|
+
W, [2007-03-08T15:51:56.662376 #25487] WARN -- : Invalid credentials given for user 'testuser'
|
218
|
+
D, [2007-03-08T15:51:56.701975 #25487] DEBUG -- : Validating login ticket 'LT-1173387116r4071292E3F2F1ED3CA5A32A0FD5'
|
219
|
+
W, [2007-03-08T15:51:56.703204 #25487] WARN -- : Login ticket 'LT-1173387116r4071292E3F2F1ED3CA5A32A0FD5' previously used up
|
220
|
+
D, [2007-03-08T15:51:56.743592 #25487] DEBUG -- : Generated login ticket 'LT-1173387116rB240C1AE63607D444D9EF5861F' for client at '127.0.0.1'
|
221
|
+
D, [2007-03-08T15:51:56.743681 #25487] DEBUG -- : Rendering login form with lt: LT-1173387116rB240C1AE63607D444D9EF5861F, service: , renew: , gateway:
|
222
|
+
D, [2007-03-08T15:51:56.777497 #25487] DEBUG -- : Validating login ticket 'LT-1173387116rB240C1AE63607D444D9EF5861F'
|
223
|
+
I, [2007-03-08T15:51:56.778497 #25487] INFO -- : Login ticket 'LT-1173387116rB240C1AE63607D444D9EF5861F' successfully validated
|
224
|
+
D, [2007-03-08T15:51:56.781873 #25487] DEBUG -- : Generated login ticket 'LT-1173387116r14B73E2B1737C28684A4CF8477D' for client at '127.0.0.1'
|
225
|
+
D, [2007-03-08T15:51:56.782013 #25487] DEBUG -- : Logging in with username: , lt: LT-1173387116r14B73E2B1737C28684A4CF8477D, service: , auth: #<CASServer::Authenticators::Test:0xb5e76ebc>
|
226
|
+
W, [2007-03-08T15:51:56.782080 #25487] WARN -- : Invalid credentials given for user ''
|
227
|
+
D, [2007-03-08T15:51:56.817089 #25487] DEBUG -- : Validating login ticket ''
|
228
|
+
W, [2007-03-08T15:51:56.817174 #25487] WARN -- : Missing login ticket.
|
229
|
+
D, [2007-03-08T15:51:56.855476 #25487] DEBUG -- : Generated login ticket 'LT-1173387116r40155EECB753D363792E6321DEB' for client at '127.0.0.1'
|
230
|
+
D, [2007-03-08T15:51:56.855550 #25487] DEBUG -- : Rendering login form with lt: LT-1173387116r40155EECB753D363792E6321DEB, service: , renew: , gateway:
|
231
|
+
D, [2007-03-08T15:51:56.960164 #25487] DEBUG -- : Validating login ticket 'LT-1173387116r40155EECB753D363792E6321DEB'
|
232
|
+
I, [2007-03-08T15:51:56.961157 #25487] INFO -- : Login ticket 'LT-1173387116r40155EECB753D363792E6321DEB' successfully validated
|
233
|
+
D, [2007-03-08T15:51:56.964205 #25487] DEBUG -- : Generated login ticket 'LT-1173387116r1AAF7C1A8E341D353E7AF442776' for client at '127.0.0.1'
|
234
|
+
D, [2007-03-08T15:51:56.964319 #25487] DEBUG -- : Logging in with username: testuser, lt: LT-1173387116r1AAF7C1A8E341D353E7AF442776, service: , auth: #<CASServer::Authenticators::Test:0xb5e76ebc>
|
235
|
+
I, [2007-03-08T15:51:56.964382 #25487] INFO -- : Credentials for username 'testuser' successfully validated
|
236
|
+
D, [2007-03-08T15:51:56.966418 #25487] DEBUG -- : Generated ticket granting ticket 'TGC-1173387116r128700723DC5DEE5B4B2386308B' for user 'testuser' at '127.0.0.1'
|
237
|
+
D, [2007-03-08T15:51:56.966504 #25487] DEBUG -- : Ticket granting cookie 'TGC-1173387116r128700723DC5DEE5B4B2386308B' granted to 'testuser'
|
238
|
+
I, [2007-03-08T15:51:56.966666 #25487] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
239
|
+
D, [2007-03-08T15:51:57.011226 #25487] DEBUG -- : Generated login ticket 'LT-1173387117r44178F4BA192DF240483579265B' for client at '127.0.0.1'
|
240
|
+
D, [2007-03-08T15:51:57.011301 #25487] DEBUG -- : Rendering login form with lt: LT-1173387117r44178F4BA192DF240483579265B, service: , renew: , gateway:
|
241
|
+
D, [2007-03-08T15:51:57.052519 #25487] DEBUG -- : Validating login ticket 'LT-1173387117r44178F4BA192DF240483579265B'
|
242
|
+
I, [2007-03-08T15:51:57.053650 #25487] INFO -- : Login ticket 'LT-1173387117r44178F4BA192DF240483579265B' successfully validated
|
243
|
+
D, [2007-03-08T15:51:57.056526 #25487] DEBUG -- : Generated login ticket 'LT-1173387117r3F9E0982D675839C0657B1D3089' for client at '127.0.0.1'
|
244
|
+
D, [2007-03-08T15:51:57.056635 #25487] DEBUG -- : Logging in with username: testuser, lt: LT-1173387117r3F9E0982D675839C0657B1D3089, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5e76ebc>
|
245
|
+
I, [2007-03-08T15:51:57.056696 #25487] INFO -- : Credentials for username 'testuser' successfully validated
|
246
|
+
D, [2007-03-08T15:51:57.057989 #25487] DEBUG -- : Generated ticket granting ticket 'TGC-1173387117r44CA91309E56056827BD4411662' for user 'testuser' at '127.0.0.1'
|
247
|
+
D, [2007-03-08T15:51:57.058066 #25487] DEBUG -- : Ticket granting cookie 'TGC-1173387117r44CA91309E56056827BD4411662' granted to 'testuser'
|
248
|
+
D, [2007-03-08T15:51:57.062101 #25487] DEBUG -- : Generated service ticket 'ST-1173387117r18EA735F7E09C54CF6950CCE113' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
249
|
+
I, [2007-03-08T15:51:57.062285 #25487] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
250
|
+
I, [2007-03-08T15:53:48.143241 #25522] INFO -- : Migrating database
|
251
|
+
I, [2007-03-08T15:53:48.155245 #25522] INFO -- : RubyCAS-Server initialized.
|
252
|
+
D, [2007-03-08T15:53:48.156985 #25522] DEBUG -- : Configuration is:
|
253
|
+
--- !map:HashWithIndifferentAccess
|
254
|
+
authenticator: !map:HashWithIndifferentAccess
|
255
|
+
class: CASServer::Authenticators::Test
|
256
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
257
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
258
|
+
theme: urbacon
|
259
|
+
db_log: !map:HashWithIndifferentAccess
|
260
|
+
file: casserver_db.log
|
261
|
+
log: !map:HashWithIndifferentAccess
|
262
|
+
level: DEBUG
|
263
|
+
file: casserver.log
|
264
|
+
port: 443
|
265
|
+
uri_path: /cas
|
266
|
+
server: webrick
|
267
|
+
organization: URBACON
|
268
|
+
database: !map:HashWithIndifferentAccess
|
269
|
+
dbfile: casserver.db
|
270
|
+
adapter: sqlite3
|
271
|
+
|
272
|
+
D, [2007-03-08T15:53:48.157061 #25522] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5e98ef4>
|
273
|
+
D, [2007-03-08T15:53:48.217591 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r11CB8509C5B083C6A725F5D4AB1' for client at '127.0.0.1'
|
274
|
+
D, [2007-03-08T15:53:48.217685 #25522] DEBUG -- : Rendering login form with lt: LT-1173387228r11CB8509C5B083C6A725F5D4AB1, service: , renew: , gateway:
|
275
|
+
D, [2007-03-08T15:53:48.317426 #25522] DEBUG -- : Validating login ticket 'LT-1173387228r11CB8509C5B083C6A725F5D4AB1'
|
276
|
+
I, [2007-03-08T15:53:48.318524 #25522] INFO -- : Login ticket 'LT-1173387228r11CB8509C5B083C6A725F5D4AB1' successfully validated
|
277
|
+
D, [2007-03-08T15:53:48.322873 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r2E64CF12E8D064D9F3007A39F47' for client at '127.0.0.1'
|
278
|
+
D, [2007-03-08T15:53:48.323031 #25522] DEBUG -- : Logging in with username: testuser, lt: LT-1173387228r2E64CF12E8D064D9F3007A39F47, service: , auth: #<CASServer::Authenticators::Test:0xb5e98ef4>
|
279
|
+
W, [2007-03-08T15:53:48.323099 #25522] WARN -- : Invalid credentials given for user 'testuser'
|
280
|
+
D, [2007-03-08T15:53:48.359211 #25522] DEBUG -- : Validating login ticket 'LT-1173387228r11CB8509C5B083C6A725F5D4AB1'
|
281
|
+
W, [2007-03-08T15:53:48.360269 #25522] WARN -- : Login ticket 'LT-1173387228r11CB8509C5B083C6A725F5D4AB1' previously used up
|
282
|
+
D, [2007-03-08T15:53:48.398484 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r2E933ADABADE84C7580BE962D78' for client at '127.0.0.1'
|
283
|
+
D, [2007-03-08T15:53:48.398558 #25522] DEBUG -- : Rendering login form with lt: LT-1173387228r2E933ADABADE84C7580BE962D78, service: , renew: , gateway:
|
284
|
+
D, [2007-03-08T15:53:48.433114 #25522] DEBUG -- : Validating login ticket 'LT-1173387228r2E933ADABADE84C7580BE962D78'
|
285
|
+
I, [2007-03-08T15:53:48.434134 #25522] INFO -- : Login ticket 'LT-1173387228r2E933ADABADE84C7580BE962D78' successfully validated
|
286
|
+
D, [2007-03-08T15:53:48.438551 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r35AEF5E59F7CD1F5B85C50882AB' for client at '127.0.0.1'
|
287
|
+
D, [2007-03-08T15:53:48.438693 #25522] DEBUG -- : Logging in with username: , lt: LT-1173387228r35AEF5E59F7CD1F5B85C50882AB, service: , auth: #<CASServer::Authenticators::Test:0xb5e98ef4>
|
288
|
+
W, [2007-03-08T15:53:48.438757 #25522] WARN -- : Invalid credentials given for user ''
|
289
|
+
D, [2007-03-08T15:53:48.472969 #25522] DEBUG -- : Validating login ticket ''
|
290
|
+
W, [2007-03-08T15:53:48.473069 #25522] WARN -- : Missing login ticket.
|
291
|
+
D, [2007-03-08T15:53:48.511563 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r24830566F89CF0AFC55D787CF83' for client at '127.0.0.1'
|
292
|
+
D, [2007-03-08T15:53:48.511638 #25522] DEBUG -- : Rendering login form with lt: LT-1173387228r24830566F89CF0AFC55D787CF83, service: , renew: , gateway:
|
293
|
+
D, [2007-03-08T15:53:48.622755 #25522] DEBUG -- : Validating login ticket 'LT-1173387228r24830566F89CF0AFC55D787CF83'
|
294
|
+
I, [2007-03-08T15:53:48.623842 #25522] INFO -- : Login ticket 'LT-1173387228r24830566F89CF0AFC55D787CF83' successfully validated
|
295
|
+
D, [2007-03-08T15:53:48.627439 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r4C2B0CBF5F14A4CE866EC7D47A5' for client at '127.0.0.1'
|
296
|
+
D, [2007-03-08T15:53:48.627573 #25522] DEBUG -- : Logging in with username: testuser, lt: LT-1173387228r4C2B0CBF5F14A4CE866EC7D47A5, service: , auth: #<CASServer::Authenticators::Test:0xb5e98ef4>
|
297
|
+
I, [2007-03-08T15:53:48.627641 #25522] INFO -- : Credentials for username 'testuser' successfully validated
|
298
|
+
D, [2007-03-08T15:53:48.631234 #25522] DEBUG -- : Generated ticket granting ticket 'TGC-1173387228r3B96D81611F42F141C0A675E509' for user 'testuser' at '127.0.0.1'
|
299
|
+
D, [2007-03-08T15:53:48.631337 #25522] DEBUG -- : Ticket granting cookie 'TGC-1173387228r3B96D81611F42F141C0A675E509' granted to 'testuser'
|
300
|
+
I, [2007-03-08T15:53:48.631398 #25522] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
301
|
+
D, [2007-03-08T15:53:48.672010 #25522] DEBUG -- : Generated login ticket 'LT-1173387228r396DA5C39CB17FB151A5DA2CAE7' for client at '127.0.0.1'
|
302
|
+
D, [2007-03-08T15:53:48.672093 #25522] DEBUG -- : Rendering login form with lt: LT-1173387228r396DA5C39CB17FB151A5DA2CAE7, service: , renew: , gateway:
|
303
|
+
D, [2007-03-08T15:53:48.708249 #25522] DEBUG -- : Validating login ticket 'LT-1173387228r396DA5C39CB17FB151A5DA2CAE7'
|
304
|
+
I, [2007-03-08T15:53:48.709354 #25522] INFO -- : Login ticket 'LT-1173387228r396DA5C39CB17FB151A5DA2CAE7' successfully validated
|
305
|
+
D, [2007-03-08T15:53:48.712604 #25522] DEBUG -- : Generated login ticket 'LT-1173387228rAC0F04E380D18C9A7515275E45' for client at '127.0.0.1'
|
306
|
+
D, [2007-03-08T15:53:48.712721 #25522] DEBUG -- : Logging in with username: testuser, lt: LT-1173387228rAC0F04E380D18C9A7515275E45, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5e98ef4>
|
307
|
+
I, [2007-03-08T15:53:48.712786 #25522] INFO -- : Credentials for username 'testuser' successfully validated
|
308
|
+
D, [2007-03-08T15:53:48.714074 #25522] DEBUG -- : Generated ticket granting ticket 'TGC-1173387228r48CFBFE379444E662137B5B2AA5' for user 'testuser' at '127.0.0.1'
|
309
|
+
D, [2007-03-08T15:53:48.714162 #25522] DEBUG -- : Ticket granting cookie 'TGC-1173387228r48CFBFE379444E662137B5B2AA5' granted to 'testuser'
|
310
|
+
D, [2007-03-08T15:53:48.719396 #25522] DEBUG -- : Generated service ticket 'ST-1173387228r4D2FE40C25A81D6F031E8A785DF' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
311
|
+
I, [2007-03-08T15:53:48.719603 #25522] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
312
|
+
I, [2007-03-08T15:54:05.689340 #25530] INFO -- : Migrating database
|
313
|
+
I, [2007-03-08T15:54:05.712046 #25530] INFO -- : RubyCAS-Server initialized.
|
314
|
+
D, [2007-03-08T15:54:05.714937 #25530] DEBUG -- : Configuration is:
|
315
|
+
--- !map:HashWithIndifferentAccess
|
316
|
+
authenticator: !map:HashWithIndifferentAccess
|
317
|
+
class: CASServer::Authenticators::Test
|
318
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
319
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
320
|
+
theme: urbacon
|
321
|
+
db_log: !map:HashWithIndifferentAccess
|
322
|
+
file: casserver_db.log
|
323
|
+
log: !map:HashWithIndifferentAccess
|
324
|
+
level: DEBUG
|
325
|
+
file: casserver.log
|
326
|
+
port: 443
|
327
|
+
uri_path: /cas
|
328
|
+
server: webrick
|
329
|
+
organization: URBACON
|
330
|
+
database: !map:HashWithIndifferentAccess
|
331
|
+
dbfile: casserver.db
|
332
|
+
adapter: sqlite3
|
333
|
+
|
334
|
+
D, [2007-03-08T15:54:05.715055 #25530] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5f0160c>
|
335
|
+
D, [2007-03-08T15:54:05.777719 #25530] DEBUG -- : Generated login ticket 'LT-1173387245r38482F855B8B2B712F65381A87' for client at '127.0.0.1'
|
336
|
+
D, [2007-03-08T15:54:05.777793 #25530] DEBUG -- : Rendering login form with lt: LT-1173387245r38482F855B8B2B712F65381A87, service: , renew: , gateway:
|
337
|
+
D, [2007-03-08T15:54:05.864366 #25530] DEBUG -- : Validating login ticket 'LT-1173387245r38482F855B8B2B712F65381A87'
|
338
|
+
I, [2007-03-08T15:54:05.865413 #25530] INFO -- : Login ticket 'LT-1173387245r38482F855B8B2B712F65381A87' successfully validated
|
339
|
+
D, [2007-03-08T15:54:05.870124 #25530] DEBUG -- : Generated login ticket 'LT-1173387245r462065CB6C883CD4D30F8B4D059' for client at '127.0.0.1'
|
340
|
+
D, [2007-03-08T15:54:05.870243 #25530] DEBUG -- : Logging in with username: testuser, lt: LT-1173387245r462065CB6C883CD4D30F8B4D059, service: , auth: #<CASServer::Authenticators::Test:0xb5f0160c>
|
341
|
+
W, [2007-03-08T15:54:05.870305 #25530] WARN -- : Invalid credentials given for user 'testuser'
|
342
|
+
D, [2007-03-08T15:54:05.909643 #25530] DEBUG -- : Validating login ticket 'LT-1173387245r38482F855B8B2B712F65381A87'
|
343
|
+
W, [2007-03-08T15:54:05.910699 #25530] WARN -- : Login ticket 'LT-1173387245r38482F855B8B2B712F65381A87' previously used up
|
344
|
+
D, [2007-03-08T15:54:05.950408 #25530] DEBUG -- : Generated login ticket 'LT-1173387245r2CEE0E74FD31F40CD31FE0101D8' for client at '127.0.0.1'
|
345
|
+
D, [2007-03-08T15:54:05.950484 #25530] DEBUG -- : Rendering login form with lt: LT-1173387245r2CEE0E74FD31F40CD31FE0101D8, service: , renew: , gateway:
|
346
|
+
D, [2007-03-08T15:54:05.986266 #25530] DEBUG -- : Validating login ticket 'LT-1173387245r2CEE0E74FD31F40CD31FE0101D8'
|
347
|
+
I, [2007-03-08T15:54:05.987252 #25530] INFO -- : Login ticket 'LT-1173387245r2CEE0E74FD31F40CD31FE0101D8' successfully validated
|
348
|
+
D, [2007-03-08T15:54:05.990717 #25530] DEBUG -- : Generated login ticket 'LT-1173387245r4AAED4C169ED747532844E4C717' for client at '127.0.0.1'
|
349
|
+
D, [2007-03-08T15:54:05.990839 #25530] DEBUG -- : Logging in with username: , lt: LT-1173387245r4AAED4C169ED747532844E4C717, service: , auth: #<CASServer::Authenticators::Test:0xb5f0160c>
|
350
|
+
W, [2007-03-08T15:54:05.990899 #25530] WARN -- : Invalid credentials given for user ''
|
351
|
+
D, [2007-03-08T15:54:06.051893 #25530] DEBUG -- : Validating login ticket ''
|
352
|
+
W, [2007-03-08T15:54:06.051983 #25530] WARN -- : Missing login ticket.
|
353
|
+
D, [2007-03-08T15:54:06.090440 #25530] DEBUG -- : Generated login ticket 'LT-1173387246r218C8E55CF8446BC27D4DF7780E' for client at '127.0.0.1'
|
354
|
+
D, [2007-03-08T15:54:06.090527 #25530] DEBUG -- : Rendering login form with lt: LT-1173387246r218C8E55CF8446BC27D4DF7780E, service: , renew: , gateway:
|
355
|
+
D, [2007-03-08T15:54:06.187321 #25530] DEBUG -- : Validating login ticket 'LT-1173387246r218C8E55CF8446BC27D4DF7780E'
|
356
|
+
I, [2007-03-08T15:54:06.188478 #25530] INFO -- : Login ticket 'LT-1173387246r218C8E55CF8446BC27D4DF7780E' successfully validated
|
357
|
+
D, [2007-03-08T15:54:06.191998 #25530] DEBUG -- : Generated login ticket 'LT-1173387246r328FCDC1115072F0A63F460F6C2' for client at '127.0.0.1'
|
358
|
+
D, [2007-03-08T15:54:06.192124 #25530] DEBUG -- : Logging in with username: testuser, lt: LT-1173387246r328FCDC1115072F0A63F460F6C2, service: , auth: #<CASServer::Authenticators::Test:0xb5f0160c>
|
359
|
+
I, [2007-03-08T15:54:06.192187 #25530] INFO -- : Credentials for username 'testuser' successfully validated
|
360
|
+
D, [2007-03-08T15:54:06.195153 #25530] DEBUG -- : Generated ticket granting ticket 'TGC-1173387246r1A5E970A0838F60999FFCBE82E' for user 'testuser' at '127.0.0.1'
|
361
|
+
D, [2007-03-08T15:54:06.195243 #25530] DEBUG -- : Ticket granting cookie 'TGC-1173387246r1A5E970A0838F60999FFCBE82E' granted to 'testuser'
|
362
|
+
I, [2007-03-08T15:54:06.195299 #25530] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
363
|
+
D, [2007-03-08T15:54:06.234735 #25530] DEBUG -- : Generated login ticket 'LT-1173387246r3EDA9D3F0179863E852EDF408A1' for client at '127.0.0.1'
|
364
|
+
D, [2007-03-08T15:54:06.234807 #25530] DEBUG -- : Rendering login form with lt: LT-1173387246r3EDA9D3F0179863E852EDF408A1, service: , renew: , gateway:
|
365
|
+
D, [2007-03-08T15:54:06.270176 #25530] DEBUG -- : Validating login ticket 'LT-1173387246r3EDA9D3F0179863E852EDF408A1'
|
366
|
+
I, [2007-03-08T15:54:06.271263 #25530] INFO -- : Login ticket 'LT-1173387246r3EDA9D3F0179863E852EDF408A1' successfully validated
|
367
|
+
D, [2007-03-08T15:54:06.274376 #25530] DEBUG -- : Generated login ticket 'LT-1173387246r80AB76085A444648848EF0ECE6' for client at '127.0.0.1'
|
368
|
+
D, [2007-03-08T15:54:06.274524 #25530] DEBUG -- : Logging in with username: testuser, lt: LT-1173387246r80AB76085A444648848EF0ECE6, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5f0160c>
|
369
|
+
I, [2007-03-08T15:54:06.274588 #25530] INFO -- : Credentials for username 'testuser' successfully validated
|
370
|
+
D, [2007-03-08T15:54:06.277658 #25530] DEBUG -- : Generated ticket granting ticket 'TGC-1173387246r4D3CE0CB7C1930C008E9D3DE204' for user 'testuser' at '127.0.0.1'
|
371
|
+
D, [2007-03-08T15:54:06.277746 #25530] DEBUG -- : Ticket granting cookie 'TGC-1173387246r4D3CE0CB7C1930C008E9D3DE204' granted to 'testuser'
|
372
|
+
D, [2007-03-08T15:54:06.281980 #25530] DEBUG -- : Generated service ticket 'ST-1173387246r47225BFD9B434F22157BB85558A' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
373
|
+
I, [2007-03-08T15:54:06.282170 #25530] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
374
|
+
I, [2007-03-08T15:54:11.329442 #25541] INFO -- : Migrating database
|
375
|
+
I, [2007-03-08T15:54:11.340608 #25541] INFO -- : RubyCAS-Server initialized.
|
376
|
+
D, [2007-03-08T15:54:11.342326 #25541] DEBUG -- : Configuration is:
|
377
|
+
--- !map:HashWithIndifferentAccess
|
378
|
+
authenticator: !map:HashWithIndifferentAccess
|
379
|
+
class: CASServer::Authenticators::Test
|
380
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
381
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
382
|
+
theme: urbacon
|
383
|
+
db_log: !map:HashWithIndifferentAccess
|
384
|
+
file: casserver_db.log
|
385
|
+
log: !map:HashWithIndifferentAccess
|
386
|
+
level: DEBUG
|
387
|
+
file: casserver.log
|
388
|
+
port: 443
|
389
|
+
uri_path: /cas
|
390
|
+
server: webrick
|
391
|
+
organization: URBACON
|
392
|
+
database: !map:HashWithIndifferentAccess
|
393
|
+
dbfile: casserver.db
|
394
|
+
adapter: sqlite3
|
395
|
+
|
396
|
+
D, [2007-03-08T15:54:11.342401 #25541] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5e8eef4>
|
397
|
+
D, [2007-03-08T15:54:11.403603 #25541] DEBUG -- : Generated login ticket 'LT-1173387251r482C9FFD46A06321B22D72AE25C' for client at '127.0.0.1'
|
398
|
+
D, [2007-03-08T15:54:11.403693 #25541] DEBUG -- : Rendering login form with lt: LT-1173387251r482C9FFD46A06321B22D72AE25C, service: , renew: , gateway:
|
399
|
+
D, [2007-03-08T15:54:11.498222 #25541] DEBUG -- : Validating login ticket 'LT-1173387251r482C9FFD46A06321B22D72AE25C'
|
400
|
+
I, [2007-03-08T15:54:11.500610 #25541] INFO -- : Login ticket 'LT-1173387251r482C9FFD46A06321B22D72AE25C' successfully validated
|
401
|
+
D, [2007-03-08T15:54:11.505873 #25541] DEBUG -- : Generated login ticket 'LT-1173387251r160BC49EBC6573188D8DE9262BD' for client at '127.0.0.1'
|
402
|
+
D, [2007-03-08T15:54:11.505999 #25541] DEBUG -- : Logging in with username: testuser, lt: LT-1173387251r160BC49EBC6573188D8DE9262BD, service: , auth: #<CASServer::Authenticators::Test:0xb5e8eef4>
|
403
|
+
W, [2007-03-08T15:54:11.506060 #25541] WARN -- : Invalid credentials given for user 'testuser'
|
404
|
+
D, [2007-03-08T15:54:11.540609 #25541] DEBUG -- : Validating login ticket 'LT-1173387251r482C9FFD46A06321B22D72AE25C'
|
405
|
+
W, [2007-03-08T15:54:11.541555 #25541] WARN -- : Login ticket 'LT-1173387251r482C9FFD46A06321B22D72AE25C' previously used up
|
406
|
+
D, [2007-03-08T15:54:11.578280 #25541] DEBUG -- : Generated login ticket 'LT-1173387251rE5AAEF7E7C8FF12628269697E3' for client at '127.0.0.1'
|
407
|
+
D, [2007-03-08T15:54:11.578366 #25541] DEBUG -- : Rendering login form with lt: LT-1173387251rE5AAEF7E7C8FF12628269697E3, service: , renew: , gateway:
|
408
|
+
D, [2007-03-08T15:54:11.612014 #25541] DEBUG -- : Validating login ticket 'LT-1173387251rE5AAEF7E7C8FF12628269697E3'
|
409
|
+
I, [2007-03-08T15:54:11.613041 #25541] INFO -- : Login ticket 'LT-1173387251rE5AAEF7E7C8FF12628269697E3' successfully validated
|
410
|
+
D, [2007-03-08T15:54:11.615753 #25541] DEBUG -- : Generated login ticket 'LT-1173387251r4EF80956B343EEF46E2678FE04' for client at '127.0.0.1'
|
411
|
+
D, [2007-03-08T15:54:11.615882 #25541] DEBUG -- : Logging in with username: , lt: LT-1173387251r4EF80956B343EEF46E2678FE04, service: , auth: #<CASServer::Authenticators::Test:0xb5e8eef4>
|
412
|
+
W, [2007-03-08T15:54:11.615946 #25541] WARN -- : Invalid credentials given for user ''
|
413
|
+
D, [2007-03-08T15:54:11.658184 #25541] DEBUG -- : Validating login ticket ''
|
414
|
+
W, [2007-03-08T15:54:11.658372 #25541] WARN -- : Missing login ticket.
|
415
|
+
D, [2007-03-08T15:54:11.724212 #25541] DEBUG -- : Generated login ticket 'LT-1173387251r2A39A5BDF87414F02B6A2449F6A' for client at '127.0.0.1'
|
416
|
+
D, [2007-03-08T15:54:11.724296 #25541] DEBUG -- : Rendering login form with lt: LT-1173387251r2A39A5BDF87414F02B6A2449F6A, service: , renew: , gateway:
|
417
|
+
D, [2007-03-08T15:54:11.829772 #25541] DEBUG -- : Validating login ticket 'LT-1173387251r2A39A5BDF87414F02B6A2449F6A'
|
418
|
+
I, [2007-03-08T15:54:11.831088 #25541] INFO -- : Login ticket 'LT-1173387251r2A39A5BDF87414F02B6A2449F6A' successfully validated
|
419
|
+
D, [2007-03-08T15:54:11.834438 #25541] DEBUG -- : Generated login ticket 'LT-1173387251r37CB8881C0356CBC71BD1390A2E' for client at '127.0.0.1'
|
420
|
+
D, [2007-03-08T15:54:11.834582 #25541] DEBUG -- : Logging in with username: testuser, lt: LT-1173387251r37CB8881C0356CBC71BD1390A2E, service: , auth: #<CASServer::Authenticators::Test:0xb5e8eef4>
|
421
|
+
I, [2007-03-08T15:54:11.834651 #25541] INFO -- : Credentials for username 'testuser' successfully validated
|
422
|
+
D, [2007-03-08T15:54:11.837871 #25541] DEBUG -- : Generated ticket granting ticket 'TGC-1173387251r1EAFB22CBFA263FB2D29DF78D44' for user 'testuser' at '127.0.0.1'
|
423
|
+
D, [2007-03-08T15:54:11.837968 #25541] DEBUG -- : Ticket granting cookie 'TGC-1173387251r1EAFB22CBFA263FB2D29DF78D44' granted to 'testuser'
|
424
|
+
I, [2007-03-08T15:54:11.838027 #25541] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
425
|
+
D, [2007-03-08T15:54:11.880380 #25541] DEBUG -- : Generated login ticket 'LT-1173387251rFB10C952525642CDC26598A123' for client at '127.0.0.1'
|
426
|
+
D, [2007-03-08T15:54:11.880455 #25541] DEBUG -- : Rendering login form with lt: LT-1173387251rFB10C952525642CDC26598A123, service: , renew: , gateway:
|
427
|
+
D, [2007-03-08T15:54:11.916975 #25541] DEBUG -- : Validating login ticket 'LT-1173387251rFB10C952525642CDC26598A123'
|
428
|
+
I, [2007-03-08T15:54:11.918021 #25541] INFO -- : Login ticket 'LT-1173387251rFB10C952525642CDC26598A123' successfully validated
|
429
|
+
D, [2007-03-08T15:54:11.920990 #25541] DEBUG -- : Generated login ticket 'LT-1173387251r41258D815AEE035D3BF28A4EC39' for client at '127.0.0.1'
|
430
|
+
D, [2007-03-08T15:54:11.921137 #25541] DEBUG -- : Logging in with username: testuser, lt: LT-1173387251r41258D815AEE035D3BF28A4EC39, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5e8eef4>
|
431
|
+
I, [2007-03-08T15:54:11.921202 #25541] INFO -- : Credentials for username 'testuser' successfully validated
|
432
|
+
D, [2007-03-08T15:54:11.922748 #25541] DEBUG -- : Generated ticket granting ticket 'TGC-1173387251r41945BA7622E1937D0B80596198' for user 'testuser' at '127.0.0.1'
|
433
|
+
D, [2007-03-08T15:54:11.922843 #25541] DEBUG -- : Ticket granting cookie 'TGC-1173387251r41945BA7622E1937D0B80596198' granted to 'testuser'
|
434
|
+
D, [2007-03-08T15:54:11.926745 #25541] DEBUG -- : Generated service ticket 'ST-1173387251r48E1FD9F20CD95E55D4336E408E' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
435
|
+
I, [2007-03-08T15:54:11.926920 #25541] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
436
|
+
I, [2007-03-08T16:21:41.337738 #25990] INFO -- : Migrating database
|
437
|
+
I, [2007-03-08T16:21:41.348850 #25990] INFO -- : RubyCAS-Server initialized.
|
438
|
+
D, [2007-03-08T16:21:41.350455 #25990] DEBUG -- : Configuration is:
|
439
|
+
--- !map:HashWithIndifferentAccess
|
440
|
+
authenticator: !map:HashWithIndifferentAccess
|
441
|
+
class: CASServer::Authenticators::Test
|
442
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
443
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
444
|
+
theme: urbacon
|
445
|
+
db_log: !map:HashWithIndifferentAccess
|
446
|
+
file: casserver_db.log
|
447
|
+
log: !map:HashWithIndifferentAccess
|
448
|
+
level: DEBUG
|
449
|
+
file: casserver.log
|
450
|
+
port: 443
|
451
|
+
uri_path: /cas
|
452
|
+
server: webrick
|
453
|
+
organization: URBACON
|
454
|
+
database: !map:HashWithIndifferentAccess
|
455
|
+
dbfile: casserver.db
|
456
|
+
adapter: sqlite3
|
457
|
+
|
458
|
+
D, [2007-03-08T16:21:41.350534 #25990] DEBUG -- : Authenticator is: #<CASServer::Authenticators::Test:0xb5eb160c>
|
459
|
+
D, [2007-03-08T16:21:41.407054 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r256A33A2AEAA8A2FB4C8F59E5E0' for client at '127.0.0.1'
|
460
|
+
D, [2007-03-08T16:21:41.407198 #25990] DEBUG -- : Rendering login form with lt: LT-1173388901r256A33A2AEAA8A2FB4C8F59E5E0, service: , renew: , gateway:
|
461
|
+
D, [2007-03-08T16:21:41.502007 #25990] DEBUG -- : Validating login ticket 'LT-1173388901r256A33A2AEAA8A2FB4C8F59E5E0'
|
462
|
+
I, [2007-03-08T16:21:41.503108 #25990] INFO -- : Login ticket 'LT-1173388901r256A33A2AEAA8A2FB4C8F59E5E0' successfully validated
|
463
|
+
D, [2007-03-08T16:21:41.508161 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r29159BFF2C14BE8397A2502E762' for client at '127.0.0.1'
|
464
|
+
D, [2007-03-08T16:21:41.508315 #25990] DEBUG -- : Logging in with username: testuser, lt: LT-1173388901r29159BFF2C14BE8397A2502E762, service: , auth: #<CASServer::Authenticators::Test:0xb5eb160c>
|
465
|
+
W, [2007-03-08T16:21:41.508381 #25990] WARN -- : Invalid credentials given for user 'testuser'
|
466
|
+
D, [2007-03-08T16:21:41.544775 #25990] DEBUG -- : Validating login ticket 'LT-1173388901r256A33A2AEAA8A2FB4C8F59E5E0'
|
467
|
+
W, [2007-03-08T16:21:41.545742 #25990] WARN -- : Login ticket 'LT-1173388901r256A33A2AEAA8A2FB4C8F59E5E0' previously used up
|
468
|
+
D, [2007-03-08T16:21:41.584953 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r37C90384173347CA5FF493B702F' for client at '127.0.0.1'
|
469
|
+
D, [2007-03-08T16:21:41.585029 #25990] DEBUG -- : Rendering login form with lt: LT-1173388901r37C90384173347CA5FF493B702F, service: , renew: , gateway:
|
470
|
+
D, [2007-03-08T16:21:41.622579 #25990] DEBUG -- : Validating login ticket 'LT-1173388901r37C90384173347CA5FF493B702F'
|
471
|
+
I, [2007-03-08T16:21:41.623708 #25990] INFO -- : Login ticket 'LT-1173388901r37C90384173347CA5FF493B702F' successfully validated
|
472
|
+
D, [2007-03-08T16:21:41.628314 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r299D1D91D8186CAC5125C8DF705' for client at '127.0.0.1'
|
473
|
+
D, [2007-03-08T16:21:41.628455 #25990] DEBUG -- : Logging in with username: , lt: LT-1173388901r299D1D91D8186CAC5125C8DF705, service: , auth: #<CASServer::Authenticators::Test:0xb5eb160c>
|
474
|
+
W, [2007-03-08T16:21:41.628519 #25990] WARN -- : Invalid credentials given for user ''
|
475
|
+
D, [2007-03-08T16:21:41.662889 #25990] DEBUG -- : Validating login ticket ''
|
476
|
+
W, [2007-03-08T16:21:41.663000 #25990] WARN -- : Missing login ticket.
|
477
|
+
D, [2007-03-08T16:21:41.700923 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r1851AA1BABC01CFA2422389AE23' for client at '127.0.0.1'
|
478
|
+
D, [2007-03-08T16:21:41.701005 #25990] DEBUG -- : Rendering login form with lt: LT-1173388901r1851AA1BABC01CFA2422389AE23, service: , renew: , gateway:
|
479
|
+
D, [2007-03-08T16:21:41.815584 #25990] DEBUG -- : Validating login ticket 'LT-1173388901r1851AA1BABC01CFA2422389AE23'
|
480
|
+
I, [2007-03-08T16:21:41.816786 #25990] INFO -- : Login ticket 'LT-1173388901r1851AA1BABC01CFA2422389AE23' successfully validated
|
481
|
+
D, [2007-03-08T16:21:41.820341 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r4BC7E4E9A6531C9139FDBE9BD44' for client at '127.0.0.1'
|
482
|
+
D, [2007-03-08T16:21:41.820469 #25990] DEBUG -- : Logging in with username: testuser, lt: LT-1173388901r4BC7E4E9A6531C9139FDBE9BD44, service: , auth: #<CASServer::Authenticators::Test:0xb5eb160c>
|
483
|
+
I, [2007-03-08T16:21:41.820532 #25990] INFO -- : Credentials for username 'testuser' successfully validated
|
484
|
+
D, [2007-03-08T16:21:41.823676 #25990] DEBUG -- : Generated ticket granting ticket 'TGC-1173388901r9F4BD2C8EEC8D732B54F14146E' for user 'testuser' at '127.0.0.1'
|
485
|
+
D, [2007-03-08T16:21:41.823791 #25990] DEBUG -- : Ticket granting cookie 'TGC-1173388901r9F4BD2C8EEC8D732B54F14146E' granted to 'testuser'
|
486
|
+
I, [2007-03-08T16:21:41.823853 #25990] INFO -- : Successfully authenticated user 'testuser' at '127.0.0.1'. No service param was given, so we will not redirect.
|
487
|
+
D, [2007-03-08T16:21:41.864529 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r3F54E1B18C3321955779664235B' for client at '127.0.0.1'
|
488
|
+
D, [2007-03-08T16:21:41.864612 #25990] DEBUG -- : Rendering login form with lt: LT-1173388901r3F54E1B18C3321955779664235B, service: , renew: , gateway:
|
489
|
+
D, [2007-03-08T16:21:41.900037 #25990] DEBUG -- : Validating login ticket 'LT-1173388901r3F54E1B18C3321955779664235B'
|
490
|
+
I, [2007-03-08T16:21:41.901180 #25990] INFO -- : Login ticket 'LT-1173388901r3F54E1B18C3321955779664235B' successfully validated
|
491
|
+
D, [2007-03-08T16:21:41.904251 #25990] DEBUG -- : Generated login ticket 'LT-1173388901r16217ACA6435A1FD053CF9971EF' for client at '127.0.0.1'
|
492
|
+
D, [2007-03-08T16:21:41.904366 #25990] DEBUG -- : Logging in with username: testuser, lt: LT-1173388901r16217ACA6435A1FD053CF9971EF, service: http://www.google.com/, auth: #<CASServer::Authenticators::Test:0xb5eb160c>
|
493
|
+
I, [2007-03-08T16:21:41.904429 #25990] INFO -- : Credentials for username 'testuser' successfully validated
|
494
|
+
D, [2007-03-08T16:21:41.905706 #25990] DEBUG -- : Generated ticket granting ticket 'TGC-1173388901r8F47AEC52D9A24611F9DBED3CF' for user 'testuser' at '127.0.0.1'
|
495
|
+
D, [2007-03-08T16:21:41.905793 #25990] DEBUG -- : Ticket granting cookie 'TGC-1173388901r8F47AEC52D9A24611F9DBED3CF' granted to 'testuser'
|
496
|
+
D, [2007-03-08T16:21:41.909870 #25990] DEBUG -- : Generated service ticket 'ST-1173388901r475213D00822CF255B338A338AA' for service 'http://www.google.com/' for user 'testuser' at '127.0.0.1'
|
497
|
+
I, [2007-03-08T16:21:41.910043 #25990] INFO -- : Redirecting authenticated user 'testuser' at '127.0.0.1' to service 'http://www.google.com/'
|
498
|
+
I, [2007-03-08T17:09:11.427919 #27441] INFO -- : Migrating database
|
499
|
+
I, [2007-03-08T17:09:11.831079 #27441] INFO -- : RubyCAS-Server initialized.
|
500
|
+
D, [2007-03-08T17:09:11.835062 #27441] DEBUG -- : Configuration is:
|
501
|
+
--- !map:HashWithIndifferentAccess
|
502
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
503
|
+
authenticator: !map:HashWithIndifferentAccess
|
504
|
+
ldap: !map:HashWithIndifferentAccess
|
505
|
+
auth_user: ldapq
|
506
|
+
port: 389
|
507
|
+
filter: (objectClass=person)
|
508
|
+
server: urbacon-ad01.urbacon.net
|
509
|
+
auth_password: urbacon
|
510
|
+
base: dc=urbacon,dc=net
|
511
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
512
|
+
theme: urbacon
|
513
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
514
|
+
db_log: !map:HashWithIndifferentAccess
|
515
|
+
file: casserver_db.log
|
516
|
+
log: !map:HashWithIndifferentAccess
|
517
|
+
level: DEBUG
|
518
|
+
file: casserver.log
|
519
|
+
port: 443
|
520
|
+
uri_path: /cas
|
521
|
+
server: webrick
|
522
|
+
organization: URBACON
|
523
|
+
database: !map:HashWithIndifferentAccess
|
524
|
+
adapter: sqlite3
|
525
|
+
dbfile: casserver.db
|
526
|
+
|
527
|
+
D, [2007-03-08T17:09:11.835193 #27441] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb611d2b0>
|
528
|
+
I, [2007-03-08T17:11:34.890577 #27534] INFO -- : RubyCAS-Server initialized.
|
529
|
+
D, [2007-03-08T17:11:34.893156 #27534] DEBUG -- : Configuration is:
|
530
|
+
--- !map:HashWithIndifferentAccess
|
531
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
532
|
+
authenticator: !map:HashWithIndifferentAccess
|
533
|
+
ldap: !map:HashWithIndifferentAccess
|
534
|
+
auth_user: ldapq
|
535
|
+
port: 389
|
536
|
+
filter: (objectClass=person)
|
537
|
+
server: urbacon-ad01.urbacon.net
|
538
|
+
auth_password: urbacon
|
539
|
+
base: dc=urbacon,dc=net
|
540
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
541
|
+
theme: urbacon
|
542
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
543
|
+
db_log: !map:HashWithIndifferentAccess
|
544
|
+
file: casserver_db.log
|
545
|
+
log: !map:HashWithIndifferentAccess
|
546
|
+
level: DEBUG
|
547
|
+
file: casserver.log
|
548
|
+
port: 443
|
549
|
+
uri_path: /cas
|
550
|
+
server: mongrel
|
551
|
+
organization: URBACON
|
552
|
+
database: !map:HashWithIndifferentAccess
|
553
|
+
adapter: sqlite3
|
554
|
+
dbfile: casserver.db
|
555
|
+
|
556
|
+
D, [2007-03-08T17:11:34.893246 #27534] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb612b270>
|
557
|
+
I, [2007-03-08T17:32:21.812705 #28012] INFO -- : RubyCAS-Server initialized.
|
558
|
+
D, [2007-03-08T17:32:21.815160 #28012] DEBUG -- : Configuration is:
|
559
|
+
--- !map:HashWithIndifferentAccess
|
560
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
561
|
+
authenticator: !map:HashWithIndifferentAccess
|
562
|
+
ldap: !map:HashWithIndifferentAccess
|
563
|
+
auth_user: ldapq
|
564
|
+
port: 389
|
565
|
+
filter: (objectClass=person)
|
566
|
+
server: urbacon-ad01.urbacon.net
|
567
|
+
auth_password: urbacon
|
568
|
+
base: dc=urbacon,dc=net
|
569
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
570
|
+
theme: urbacon
|
571
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
572
|
+
db_log: !map:HashWithIndifferentAccess
|
573
|
+
file: casserver_db.log
|
574
|
+
log: !map:HashWithIndifferentAccess
|
575
|
+
level: DEBUG
|
576
|
+
file: casserver.log
|
577
|
+
port: 443
|
578
|
+
uri_path: /cas
|
579
|
+
server: mongrel
|
580
|
+
organization: URBACON
|
581
|
+
database: !map:HashWithIndifferentAccess
|
582
|
+
adapter: sqlite3
|
583
|
+
dbfile: casserver.db
|
584
|
+
|
585
|
+
D, [2007-03-08T17:32:21.815285 #28012] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb619daf0>
|
586
|
+
I, [2007-03-08T17:33:07.417538 #28047] INFO -- : RubyCAS-Server initialized.
|
587
|
+
D, [2007-03-08T17:33:07.419978 #28047] DEBUG -- : Configuration is:
|
588
|
+
--- !map:HashWithIndifferentAccess
|
589
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
590
|
+
authenticator: !map:HashWithIndifferentAccess
|
591
|
+
ldap: !map:HashWithIndifferentAccess
|
592
|
+
auth_user: ldapq
|
593
|
+
port: 389
|
594
|
+
filter: (objectClass=person)
|
595
|
+
server: urbacon-ad01.urbacon.net
|
596
|
+
auth_password: urbacon
|
597
|
+
base: dc=urbacon,dc=net
|
598
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
599
|
+
theme: urbacon
|
600
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
601
|
+
db_log: !map:HashWithIndifferentAccess
|
602
|
+
file: casserver_db.log
|
603
|
+
log: !map:HashWithIndifferentAccess
|
604
|
+
level: DEBUG
|
605
|
+
file: casserver.log
|
606
|
+
port: 443
|
607
|
+
uri_path: /cas
|
608
|
+
server: mongrel
|
609
|
+
organization: URBACON
|
610
|
+
database: !map:HashWithIndifferentAccess
|
611
|
+
adapter: sqlite3
|
612
|
+
dbfile: casserver.db
|
613
|
+
|
614
|
+
D, [2007-03-08T17:33:07.420065 #28047] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb60fc920>
|
615
|
+
I, [2007-03-08T17:59:26.662645 #28751] INFO -- : RubyCAS-Server initialized.
|
616
|
+
D, [2007-03-08T17:59:26.664932 #28751] DEBUG -- : Configuration is:
|
617
|
+
--- !map:HashWithIndifferentAccess
|
618
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
619
|
+
authenticator: !map:HashWithIndifferentAccess
|
620
|
+
ldap: !map:HashWithIndifferentAccess
|
621
|
+
auth_user: ldapq
|
622
|
+
port: 389
|
623
|
+
filter: (objectClass=person)
|
624
|
+
server: urbacon-ad01.urbacon.net
|
625
|
+
auth_password: urbacon
|
626
|
+
base: dc=urbacon,dc=net
|
627
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
628
|
+
theme: urbacon
|
629
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
630
|
+
db_log: !map:HashWithIndifferentAccess
|
631
|
+
file: casserver_db.log
|
632
|
+
log: !map:HashWithIndifferentAccess
|
633
|
+
level: DEBUG
|
634
|
+
file: casserver.log
|
635
|
+
port: 443
|
636
|
+
uri_path: /cas
|
637
|
+
server: mongrel
|
638
|
+
organization: URBACON
|
639
|
+
database: !map:HashWithIndifferentAccess
|
640
|
+
adapter: sqlite3
|
641
|
+
dbfile: casserver.db
|
642
|
+
|
643
|
+
D, [2007-03-08T17:59:26.665008 #28751] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb618e35c>
|
644
|
+
I, [2007-03-08T17:59:32.968046 #28759] INFO -- : RubyCAS-Server initialized.
|
645
|
+
D, [2007-03-08T17:59:32.970283 #28759] DEBUG -- : Configuration is:
|
646
|
+
--- !map:HashWithIndifferentAccess
|
647
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
648
|
+
authenticator: !map:HashWithIndifferentAccess
|
649
|
+
ldap: !map:HashWithIndifferentAccess
|
650
|
+
auth_user: ldapq
|
651
|
+
port: 389
|
652
|
+
filter: (objectClass=person)
|
653
|
+
server: urbacon-ad01.urbacon.net
|
654
|
+
auth_password: urbacon
|
655
|
+
base: dc=urbacon,dc=net
|
656
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
657
|
+
theme: urbacon
|
658
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
659
|
+
db_log: !map:HashWithIndifferentAccess
|
660
|
+
file: casserver_db.log
|
661
|
+
log: !map:HashWithIndifferentAccess
|
662
|
+
level: DEBUG
|
663
|
+
file: casserver.log
|
664
|
+
port: 443
|
665
|
+
uri_path: /cas
|
666
|
+
server: mongrel
|
667
|
+
organization: URBACON
|
668
|
+
database: !map:HashWithIndifferentAccess
|
669
|
+
adapter: sqlite3
|
670
|
+
dbfile: casserver.db
|
671
|
+
|
672
|
+
D, [2007-03-08T17:59:32.970359 #28759] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb619b3f4>
|
673
|
+
I, [2007-03-08T18:00:13.799121 #28797] INFO -- : RubyCAS-Server initialized.
|
674
|
+
D, [2007-03-08T18:00:13.807676 #28797] DEBUG -- : Configuration is:
|
675
|
+
--- !map:HashWithIndifferentAccess
|
676
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
677
|
+
authenticator: !map:HashWithIndifferentAccess
|
678
|
+
ldap: !map:HashWithIndifferentAccess
|
679
|
+
auth_user: ldapq
|
680
|
+
port: 389
|
681
|
+
filter: (objectClass=person)
|
682
|
+
server: urbacon-ad01.urbacon.net
|
683
|
+
auth_password: urbacon
|
684
|
+
base: dc=urbacon,dc=net
|
685
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
686
|
+
theme: urbacon
|
687
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
688
|
+
db_log: !map:HashWithIndifferentAccess
|
689
|
+
file: casserver_db.log
|
690
|
+
log: !map:HashWithIndifferentAccess
|
691
|
+
level: DEBUG
|
692
|
+
file: casserver.log
|
693
|
+
port: 3301
|
694
|
+
uri_path: /cas
|
695
|
+
server: webrick
|
696
|
+
organization: URBACON
|
697
|
+
database: !map:HashWithIndifferentAccess
|
698
|
+
adapter: sqlite3
|
699
|
+
dbfile: casserver.db
|
700
|
+
|
701
|
+
D, [2007-03-08T18:00:13.807839 #28797] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb6131378>
|
702
|
+
D, [2007-03-08T18:00:45.306184 #28797] DEBUG -- : Generated login ticket 'LT-1173394845r40D9611E5DEBE39C26FAFD7E295' for client at 'mzukowski.urbacon.net'
|
703
|
+
D, [2007-03-08T18:00:45.306335 #28797] DEBUG -- : Rendering login form with lt: LT-1173394845r40D9611E5DEBE39C26FAFD7E295, service: , renew: , gateway:
|
704
|
+
D, [2007-03-08T18:00:52.172090 #28797] DEBUG -- : Validating login ticket 'LT-1173394845r40D9611E5DEBE39C26FAFD7E295'
|
705
|
+
I, [2007-03-08T18:00:52.173814 #28797] INFO -- : Login ticket 'LT-1173394845r40D9611E5DEBE39C26FAFD7E295' successfully validated
|
706
|
+
D, [2007-03-08T18:00:52.427940 #28797] DEBUG -- : Generated login ticket 'LT-1173394852r4A6A482E92868C23EAD492788D' for client at 'mzukowski.urbacon.net'
|
707
|
+
D, [2007-03-08T18:00:52.428209 #28797] DEBUG -- : Logging in with username: mzukowski, lt: LT-1173394852r4A6A482E92868C23EAD492788D, service: , auth: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb6131378>
|
708
|
+
I, [2007-03-08T18:00:52.451908 #28797] INFO -- : Credentials for username 'mzukowski' successfully validated
|
709
|
+
D, [2007-03-08T18:00:52.517523 #28797] DEBUG -- : Generated ticket granting ticket 'TGC-1173394852r1E2C91CD940D7A6E3129DE72680' for user 'mzukowski' at 'mzukowski.urbacon.net'
|
710
|
+
D, [2007-03-08T18:00:52.517815 #28797] DEBUG -- : Ticket granting cookie 'TGC-1173394852r1E2C91CD940D7A6E3129DE72680' granted to 'mzukowski'
|
711
|
+
I, [2007-03-08T18:00:52.517890 #28797] INFO -- : Successfully authenticated user 'mzukowski' at 'mzukowski.urbacon.net'. No service param was given, so we will not redirect.
|
712
|
+
I, [2007-03-08T18:09:03.742458 #28936] INFO -- : RubyCAS-Server initialized.
|
713
|
+
D, [2007-03-08T18:09:03.744705 #28936] DEBUG -- : Configuration is:
|
714
|
+
--- !map:HashWithIndifferentAccess
|
715
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
716
|
+
authenticator: !map:HashWithIndifferentAccess
|
717
|
+
ldap: !map:HashWithIndifferentAccess
|
718
|
+
auth_user: ldapq
|
719
|
+
port: 389
|
720
|
+
filter: (objectClass=person)
|
721
|
+
server: urbacon-ad01.urbacon.net
|
722
|
+
auth_password: urbacon
|
723
|
+
base: dc=urbacon,dc=net
|
724
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
725
|
+
theme: urbacon
|
726
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
727
|
+
db_log: !map:HashWithIndifferentAccess
|
728
|
+
file: casserver_db.log
|
729
|
+
log: !map:HashWithIndifferentAccess
|
730
|
+
level: DEBUG
|
731
|
+
file: casserver.log
|
732
|
+
port: 3301
|
733
|
+
uri_path: /cas
|
734
|
+
server: webrick
|
735
|
+
organization: URBACON
|
736
|
+
database: !map:HashWithIndifferentAccess
|
737
|
+
adapter: sqlite3
|
738
|
+
dbfile: casserver.db
|
739
|
+
|
740
|
+
D, [2007-03-08T18:09:03.744780 #28936] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb61212fc>
|
741
|
+
D, [2007-03-08T18:09:03.751078 #28936] DEBUG -- : Destroying 2 expired CASServer::Models::LoginTickets.
|
742
|
+
D, [2007-03-08T18:09:09.107411 #28936] DEBUG -- : Generated login ticket 'LT-1173395349r21CE5E4AE47C71F250F632563D8' for client at 'mzukowski.urbacon.net'
|
743
|
+
D, [2007-03-08T18:09:09.107530 #28936] DEBUG -- : Rendering login form with lt: LT-1173395349r21CE5E4AE47C71F250F632563D8, service: , renew: , gateway:
|
744
|
+
D, [2007-03-08T18:09:16.640382 #28936] DEBUG -- : Validating login ticket 'LT-1173395349r21CE5E4AE47C71F250F632563D8'
|
745
|
+
I, [2007-03-08T18:09:16.641652 #28936] INFO -- : Login ticket 'LT-1173395349r21CE5E4AE47C71F250F632563D8' successfully validated
|
746
|
+
D, [2007-03-08T18:09:16.894942 #28936] DEBUG -- : Generated login ticket 'LT-1173395356r4E1EB273E2EBF9E418F47C9B3E2' for client at 'mzukowski.urbacon.net'
|
747
|
+
D, [2007-03-08T18:09:16.895214 #28936] DEBUG -- : Logging in with username: mzukowski, lt: LT-1173395356r4E1EB273E2EBF9E418F47C9B3E2, service: , auth: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb61212fc>
|
748
|
+
I, [2007-03-08T18:09:16.920770 #28936] INFO -- : Credentials for username 'mzukowski' successfully validated
|
749
|
+
D, [2007-03-08T18:09:16.989504 #28936] DEBUG -- : Generated ticket granting ticket 'TGC-1173395356r53A8C4AD580D74F60C8A10CEFB' for user 'mzukowski' at 'mzukowski.urbacon.net'
|
750
|
+
D, [2007-03-08T18:09:16.989717 #28936] DEBUG -- : Ticket granting cookie 'TGC-1173395356r53A8C4AD580D74F60C8A10CEFB' granted to 'mzukowski'
|
751
|
+
I, [2007-03-08T18:09:16.989792 #28936] INFO -- : Successfully authenticated user 'mzukowski' at 'mzukowski.urbacon.net'. No service param was given, so we will not redirect.
|
752
|
+
I, [2007-03-08T18:09:49.960247 #28966] INFO -- : RubyCAS-Server initialized.
|
753
|
+
D, [2007-03-08T18:09:49.962538 #28966] DEBUG -- : Configuration is:
|
754
|
+
--- !map:HashWithIndifferentAccess
|
755
|
+
ssl_cert: /home/URBACON/mzukowski/ssl/urbacon.nopass.pem
|
756
|
+
authenticator: !map:HashWithIndifferentAccess
|
757
|
+
ldap: !map:HashWithIndifferentAccess
|
758
|
+
auth_user: ldapq
|
759
|
+
port: 389
|
760
|
+
filter: (objectClass=person)
|
761
|
+
server: urbacon-ad01.urbacon.net
|
762
|
+
auth_password: urbacon
|
763
|
+
base: dc=urbacon,dc=net
|
764
|
+
class: CASServer::Authenticators::ActiveDirectoryLDAP
|
765
|
+
theme: urbacon
|
766
|
+
infoline: Urbacon Limited 2007, All Rights Reserved
|
767
|
+
db_log: !map:HashWithIndifferentAccess
|
768
|
+
file: casserver_db.log
|
769
|
+
log: !map:HashWithIndifferentAccess
|
770
|
+
level: DEBUG
|
771
|
+
file: casserver.log
|
772
|
+
port: 3301
|
773
|
+
uri_path: /cas
|
774
|
+
server: webrick
|
775
|
+
organization: URBACON
|
776
|
+
database: !map:HashWithIndifferentAccess
|
777
|
+
adapter: sqlite3
|
778
|
+
dbfile: casserver.db
|
779
|
+
|
780
|
+
D, [2007-03-08T18:09:49.962614 #28966] DEBUG -- : Authenticator is: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb617a370>
|
781
|
+
D, [2007-03-08T18:09:55.029554 #28966] DEBUG -- : Validating login ticket 'LT-1173395349r21CE5E4AE47C71F250F632563D8'
|
782
|
+
W, [2007-03-08T18:09:55.031313 #28966] WARN -- : Login ticket 'LT-1173395349r21CE5E4AE47C71F250F632563D8' previously used up
|
783
|
+
D, [2007-03-08T18:10:02.395614 #28966] DEBUG -- : Generated login ticket 'LT-1173395402r347DF2CB4392E0DC7511B4B0A6B' for client at 'mzukowski.urbacon.net'
|
784
|
+
D, [2007-03-08T18:10:02.395952 #28966] DEBUG -- : Rendering login form with lt: LT-1173395402r347DF2CB4392E0DC7511B4B0A6B, service: , renew: , gateway:
|
785
|
+
D, [2007-03-08T18:10:04.107265 #28966] DEBUG -- : Validating login ticket 'LT-1173395402r347DF2CB4392E0DC7511B4B0A6B'
|
786
|
+
I, [2007-03-08T18:10:04.108714 #28966] INFO -- : Login ticket 'LT-1173395402r347DF2CB4392E0DC7511B4B0A6B' successfully validated
|
787
|
+
D, [2007-03-08T18:10:04.271353 #28966] DEBUG -- : Generated login ticket 'LT-1173395404r19BD3B2C6C6B95CD4F16E04CB1B' for client at 'mzukowski.urbacon.net'
|
788
|
+
D, [2007-03-08T18:10:04.271696 #28966] DEBUG -- : Logging in with username: mzukowski, lt: LT-1173395404r19BD3B2C6C6B95CD4F16E04CB1B, service: , auth: #<CASServer::Authenticators::ActiveDirectoryLDAP:0xb617a370>
|
789
|
+
I, [2007-03-08T18:10:04.295802 #28966] INFO -- : Credentials for username 'mzukowski' successfully validated
|
790
|
+
D, [2007-03-08T18:10:04.348646 #28966] DEBUG -- : Generated ticket granting ticket 'TGC-1173395404r20594EBFDC11A5D7E1437046197' for user 'mzukowski' at 'mzukowski.urbacon.net'
|
791
|
+
D, [2007-03-08T18:10:04.348829 #28966] DEBUG -- : Ticket granting cookie 'TGC-1173395404r20594EBFDC11A5D7E1437046197' granted to 'mzukowski'
|
792
|
+
I, [2007-03-08T18:10:04.348938 #28966] INFO -- : Successfully authenticated user 'mzukowski' at 'mzukowski.urbacon.net'. No service param was given, so we will not redirect.
|