<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Server &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://help.hostry.com</link>
	<description>Full information on how to use HOSTRY, provided by 24/7 community based support</description>
	<lastBuildDate>Thu, 10 Oct 2019 12:13:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.12</generator>

<image>
	<url>https://help.hostry.com/wp-content/uploads/cache/2021/01/cropped-apple-icon-180x180-1/836712163.png</url>
	<title>SQL Server &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Get started with SQL Server on CentOS using Docker</title>
		<link>https://help.hostry.com/knowledge-base/get-started-with-sql-server-on-centos-using-docker/</link>
					<comments>https://help.hostry.com/knowledge-base/get-started-with-sql-server-on-centos-using-docker/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 10 Oct 2019 12:13:19 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=789</guid>

					<description><![CDATA[SQL is a special-purpose programming language designed to handle data in a relational database management system. A database server is a computer program that provides database services to other programs or computers, as defined by the client-server model. Therefore, a SQL Server is a database server that implements the Structured [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://www.cbronline.com/what-is/what-is-sql-server-4914415/">SQL</a></em></strong> is a special-purpose programming language designed to handle data in a relational database management system. A database server is a computer program that provides database services to other programs or computers, as defined by the client-server model. Therefore, a SQL Server is a database server that implements the Structured Query Language (SQL).</p>



<h2 id="install-docker" >Install Docker</h2>



<p>Install Docker First, to install SQL Server, you need to install Docker. If you already have it installed, go to the following command (as root)</p>



<pre class="wp-block-code"><code># curl -s https://get.docker.com/ | sudo sh</code></pre>



<p>Make sure the installation is complete</p>



<pre class="wp-block-code"><code># docker version</code></pre>



<p>With this check, if you get: Cannot connect to the Docker daemon. Is the docker daemon running on this host? Launch Docker using the command below:</p>



<pre class="wp-block-code"><code># service docker start</code></pre>



<p>Then enter the following command to automatically launch Docker at boot time:</p>



<pre class="wp-block-code"><code># systemctl enable docker</code></pre>



<h2 id="install-sql-server" >Install SQL Server</h2>



<p>Install SQL Server using the following command:</p>



<pre class="wp-block-code"><code># docker run --restart always -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=YourStrongP@SSW0RD' -e 'MSSQL_PID=Developer' -p 1433:1433 --name SQL_CONTAINER -d microsoft/mssql-server-linux</code></pre>



<p>Below, it will be described in detail for what certain teams and their functions and application are responsible for:</p>



<ul><li><strong>&#8211;restart always &#8211; </strong> Restarting the container if for any reason it is completed;</li><li><strong>-e &#8216;ACCEPT_EULA = Y&#8217;- </strong> This is a parameter that prompts you to accept the end user license agreement. If you do not agree, the installation will not continue.</li><li>&#8211;<strong>e &#8216;MSSQL_PID = Developer&#8217;- </strong> This is the parameter for entering the license and product key. It can be used with Developer, Evaluationб Express, Web, Enterprise, Standard;</li><li><strong>&#8211;name SQL_CONTAINER &#8211; </strong> Specifies the name of the container;</li><li><strong>-d microsoft / mssql-server-linux- </strong> container image. If not specified, by default it will be installed with the latest version.</li></ul>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/get-started-with-sql-server-on-centos-using-docker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
