ip check
ifconfig ifconfig eth0
ifconfig ifconfig eth0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
class DBData { static string connectionString = "server= localhost;uid=user;pwd=pass;database=SSC"; public static string Select(int Sending_SSC) { string ADW = null; //SQL 연결설정 //Call stored procedure with parameter and return value SqlConnection conn = new SqlConnection(connectionString); try { conn.Open(); SqlCommand cmd = conn.CreateCommand(); cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = "GetCachingADW"; SqlParameter paramSending_SSC = cmd.Parameters.Add("@Sending_SSC",SqlDbType.SmallInt); paramSending_SSC.Direction = ParameterDirection.Input; paramSending_SSC.Value = Sending_SSC; SqlDataReader reader = cmd.ExecuteReader(); if (reader.Read()) { ADW = reader["ADW"].ToString(); } reader.Close(); // <- too easy to forget reader.Dispose(); // <- too easy to forget conn.Close(); // <- too easy to forget return ADW; } catch (Exception ex) { //클라이언트에게 예외를 던진다. //throw ex; string Err = ex.ToString(); return ""; } } |
SMTP Error 500 : The last command sent by your server was not recognized as a valid SMTP or ESMTP command, or is not formatted […]
1 2 3 |
sudo iptables -L |
1 2 3 4 |
sudo iptables -A INPUT -p tcp --dport ssh -j ACCEPT sudo iptables -A INPUT -p tcp --dport 80 -j ACCEPT |
Ubuntu 는 앞에 sudo 입력 설치: apt-get -y install ufw 활성화 : ufw enable 비활성화: ufw disable 전부막음: ufw default deny 전부허용: ufw default allow […]
Copyright © 2024 | WordPress Theme by MH Themes