The Breakaway Tour
The Breakaway Tour was the second headling concert tour by American recording artist Kelly Clarkson.[1] The tour promoted her second studio album, Breakaway (2004), and this was her first tour to visit Australia and Europe.
Tour by Kelly Clarkson | |||||||
![]() Promotional poster for the tour | |||||||
Associated album | Breakaway | ||||||
---|---|---|---|---|---|---|---|
Start date | March 30, 2005 | ||||||
End date | March 23, 2006 | ||||||
Legs | 3 | ||||||
No. of shows | 38 in North America 8 in Australia 19 in Europe 65 Total | ||||||
Kelly Clarkson concert chronology | |||||||
|
Opening acts
- Graham Colton Band (North America)[2]
- Rogue Traders (Australia)
Setlist
- "Since U Been Gone"
- "Walk Away"
- "Gone"
- "Low"
- "Just Missed the Train"
- "What's Up Lonely"
- "Thankful"
- "The Trouble with Love Is"
- "Don't"
- "Covers medley: "Piece of My Heart" / "The Thrill Is Gone" / "Sweet Dreams (Are Made of This)"
- "Beautiful Disaster"
- "Addicted"
- "Because of You"
- "Where is Your Heart"
- "Behind These Hazel Eyes"
- Encore
Tour dates
- Festivals and other miscellaneous performances
- A This concert was a part of "Channel 933's Your Show"
- B This concert was a part of "Wango Tango"
- C This concert was a part of "Beauty Live"
Canceled shows
Date | City | Country | Venue | Reason |
---|---|---|---|---|
November 20, 2005 | Christchurch | New Zealand | WestpacTrust Centre | Vocal rest due to strained vocal cords.[10] |
November 22, 2005 | Auckland | Logan Campbell Centre |
gollark: Makes sense.
gollark: Hmm, so what extra features are needed?
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
External links
References
- Davis, Carolyn E. (April 27, 2005). "Kelly Clarkson Turns 23; Fans' Tour Wishes Come True". MTV News. Archived from the original on December 8, 2011. Retrieved December 8, 2011.
- "Kelly Clarkson: New Rocker Boyfriend". People. December 1, 2005. Archived from the original on December 8, 2011. Retrieved December 8, 2011.
- Rashbaum, Alyssa (February 23, 2005). "Kelly Clarkson Lines Up 35-Show Tour". MTV News. Archived from the original on December 7, 2011. Retrieved December 7, 2011.
- "Tour". The Official Homepage of Kelly Clarkson. RCA Records. 2003. Archived from the original on June 1, 2005. Retrieved December 7, 2011.
- "Tour". The Official Homepage of Kelly Clarkson. RCA Records. 2003. Archived from the original on July 3, 2005. Retrieved December 7, 2011.
- "Tour". The Official Homepage of Kelly Clarkson. RCA Records. 2003. Archived from the original on October 31, 2005. Retrieved December 7, 2011.
- Davis, Carolyn E.; Pak, SuChin (May 14, 2005). "Kelly Clarkson Unveils More Tour Dates, Says 'Who's Bo Bice?'". MTV News. Archived from the original on December 8, 2011. Retrieved December 7, 2011.
- "Kelly Clarkson Announces Aussie Tour!". The Hot Hits Live from LA. MCM Media. September 20, 2005. Archived from the original on December 7, 2011. Retrieved December 7, 2011.
- "Tour". The Official Homepage of Kelly Clarkson. RCA Records. 2006. Archived from the original on February 8, 2006. Retrieved December 8, 2011.
- NZPAwebsite=NZ Herald (November 18, 2005). "Kelly Clarkson's concerts cancelled". Retrieved January 14, 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.